n-PRO-10
LPC1769 full breakout in n-PRO modular form factor
License | GPL 2.0 |
Status | Tested |
Buy at: | |
Categories | |
Hardware repo | Bitbucket |
Firmware repo |
n-PRO-10 is an mbed-enabled ARM Cortex M3 LPC1769 development board from the n-Blocks family designed for rapid prototyping, in the n-Blocks PRO form factor.
n-PRO-10 board features NXP's LPC1769 microcontroller and is designed to quickly get started with the ARM Cortex-M3.The board allow engineers to develop their applications from initial prototype to final production. n-PRO-10 development board is compatible with various toolchains used in the industry. The board includes an onboard, CMSIS-DAP compatible debug probe as well as a connector for use with 3rd party debug probes.
n-PRO-10 is a HOST board with four Hirose DF30-series 60-pin low profile connectors at bottom side, following the n-Blocks PRO form factor.
#include "mbed.h" DigitalOut led1(P1_18); // main() runs in its own thread in the OS int main() { while (true) { led1 = !led1; wait(0.05); } }