Skip to content

blinky101/blinky_lpc43xx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.