Tutorial 2 - SOS: This is an embedded program which controls LED1 in order to show a blinking SOS pattern. The tutorial starts to organize helper functions like "morse" in a brick library which will grow and grow with each tutorial. Platform specifics are identified in "bricks/platform.h" by setting proper defines (like LED_INVERTED), which are used to achieve platform independent behaviour. The program has been tested on Nordic nRF51-DK and STM NUCLEO-F303K8, NUCLEO-F401RE and NUCLEO-L476RG.
bricks/platform.h
- Committer:
- hux
- Date:
- 2016-12-08
- Revision:
- 0:9bbb539e0614
File content as of revision 0:9bbb539e0614:
// platform.h - define platform specifics #ifndef _PLATFORM_H_ #define _PLATFORM_H_ // platform specific defines - comment out platforms which are not used //#define NORDIC #define NUCLEO #endif // _PLATFORM_H_