Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 862 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 862 Bytes

LPC43xx Example Project: Blinky

Simple Hello World-like blinky programs for the LPC43xx platform. This repositories contains three blinky programs, in increasing order of complexity / abstraction level:

  1. bare-metal: A blinky program in one file, with no dependencies at all.
  2. basic: A proper but very basic c program, where the low-level stuff is in separate functions.
  3. cpm: Using CPM as c package manager: reuseable dependencies are in separate repositories.

Extras:

  • dual_core: Uses both the cortex-M4 and the cortex-M0 cores, blinking two LEDS independently.
  • cpm_bootloader: Same as cpm, but used in combination with a custom bootloader.

See the blinky website and the per-project README files for more information.