This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Newbie having trouble getting started...

Hello, I just received my BMD-200 eval board today and cannot get any of the examples working. I started out trying to get blinky to work using GCC and the make files provided. I am able to successfully build the projects. The _build directory has the .hex files. It is not clear what the next step should be here. make soft_device seems to just load the Soft Device so how does the example get loaded in this paradigm? What dictates where in memory it gets loaded in the GCC paradigm? Is this important?

After many attempts, I gave up on the above method and tried using nrfGo Studio. I loaded the 110 Soft Device (I am on the latest SDK version 8), and then loaded several peripheral examples. None of them run.

I gave up on this method and downloaded the Keil tools. I followed the instructions in the manual by first using nrfGo Studio to load the 110 Soft Device, and then moved over to the Keil tool. Made all of the configuration modifcations, downloaded custom_board.h, and the project builds successfully. It even seems to download to Flash successfully but it won't run. blinky does not blink and none of the ble peripheral examples advertise, so I know its not working.

I'm not sure what to try next. Can you please let me know what I am doing wrong based on the above. I don't care which method I use; I just need one that works.

Any help would be greatly appreciated.

Thanks.

Ernest

Parents
  • I dont know BMD-200, but all SDK8 examples use Nordic PCA10028/PCA10031 with nRF51422 chip insted of nRF51822. Check your makefiles and choose the right ld script (xxaa,xxab,xxac) based on which chip is used in BMD-200.

    Let me know.

    -c

    UPDATED : The chip onboard is nRF51822, Revision 2, QFN48, 256K Flash, 16k RAM. The compatible SDK is 6.1.1

    No SDK version 7 or 8 are allowed. Available SD are : S110 from 7.0.0 to 8.0.0

    Compatible Evaluation Kit : version 2.1.0 or 2.2.0

    So, you can compile (safely) with SDK 6 .

    Try,as suggested in previous post, to compile and run without S110 but as bare cortex M0.

    Erase the flash if a softdevice is installed.

    Use this SDK 6 ld script : gcc_nrf51_blank_xxaa.ld

    Use gcc makefile located in .../templates/gcc and gcc_startup_nrf51.s (it's in this dir).

    File system_nrf51.c is located at .../templates.

    UPDATE II :

    Use the blinky example in SDK/Board/PCA10001/example Look at makefile, use it as a guide .

    -c

Reply
  • I dont know BMD-200, but all SDK8 examples use Nordic PCA10028/PCA10031 with nRF51422 chip insted of nRF51822. Check your makefiles and choose the right ld script (xxaa,xxab,xxac) based on which chip is used in BMD-200.

    Let me know.

    -c

    UPDATED : The chip onboard is nRF51822, Revision 2, QFN48, 256K Flash, 16k RAM. The compatible SDK is 6.1.1

    No SDK version 7 or 8 are allowed. Available SD are : S110 from 7.0.0 to 8.0.0

    Compatible Evaluation Kit : version 2.1.0 or 2.2.0

    So, you can compile (safely) with SDK 6 .

    Try,as suggested in previous post, to compile and run without S110 but as bare cortex M0.

    Erase the flash if a softdevice is installed.

    Use this SDK 6 ld script : gcc_nrf51_blank_xxaa.ld

    Use gcc makefile located in .../templates/gcc and gcc_startup_nrf51.s (it's in this dir).

    File system_nrf51.c is located at .../templates.

    UPDATE II :

    Use the blinky example in SDK/Board/PCA10001/example Look at makefile, use it as a guide .

    -c

Children
No Data
Related