9 years, 4 months ago.

MBED Library for Blue_NRG Shield for STM32 Nucleo board

How can I get access to a MBED library for my Blue_NRG arduino sheild (plugged on a STM32F411 Nucleo Board).

Question relating to:

High level Bluetooth Low Energy API and radio abstraction layer

2 Answers

9 years, 4 months ago.

There was a BLE_BlueNRG lib from http://developer.mbed.org/users/mridup/. It is not accessible at the moment. Ask the author.

Accepted Answer

Thanks Peter, This is exactely the point. It seems that the library was available some time ago, but right now no. I will try another way. Regards

posted by francois DRUILHE 13 Dec 2014
9 years, 4 months ago.

Try:

  • Go to mbed platforms page: http://developer.mbed.org/platforms/
  • Select your platform
  • Click "Add to your mbed compiler"
  • Open your mbed compoiler page: https://developer.mbed.org/compiler/#nav:/;
  • Highlight "My Programs" at top of tree at left
  • Ensure the desired platform is selected at upper right
  • Click New>New Program at top left
  • Use Blinky template
  • mbed library automatically imported (with correct platform selected the lib may actually be platform independent, I'm not sure yet).
  • Test blinky runs properly on your platform
  • (For more hardware features of your platform or MCU there is usually another lib specifically for it, like I use the nRF51822 lib for my mkit).
  • For an existing project: Ensure correct platform is selected, delete any incorrect library, click import at top left, select library (This may not be necessary, but it will ensure library is up to date).
  • It might be cleaner to start a fresh project with blank template, then copy in the source file from old project (main.cpp), then import desired libs (which will be up to date on fresh import with correct platform selected).