Table of Contents

n-PRO-10

n-PRO-10

n-pro-10-09.jpg

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.

Overview

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.



MCU Features

  • Arm® Cortex-M3 processor, running at frequencies of up to 120 MHz
  • Arm Cortex-M3 built-in Nested Vectored Interrupt Controller (NVIC)
  • Up to 512 kB on-chip flash memory
  • Up to 64 kB On-chip SRAM
  • In-System Programming (ISP) and In-Application Programming (IAP)
  • 8 channel General Purpose DMA controller (GPDMA)
  • Ethernet MAC with RMII interface and dedicated DMA controller
  • USB 2.0 full-speed device/Host/OTG controller
  • 4 UARTs with fractional baud rate generation, internal FIFO, and DMA support
  • CAN 2.0B controller with two channels
  • SPI controller with synchronous, serial, full duplex communication
  • 2 × SSP controllers with FIFO and multi-protocol capabilities
  • 3 × I2C bus interfaces, I2S (Inter-IC Sound) interface
  • 70 × GPIOs with configurable pull-up/down resistors
  • 12-bit/8-ch Analog/Digital Converter (ADC) with conversion rates up to 200 kHz
  • 10-bit Digital/Analog Converter (DAC) with dedicated conversion timer and DMA
  • 4 × general purpose timers/counters
  • Motor control PWM with support for three-phase motor control
  • Quadrature encoder interface that can monitor one external quadrature encoder



n-PRO-10 Features

  • Standard form-factor
  • Drag-and-drop programming, with the board represented as a USB drive
  • 100 MHz ARM with 64 KB of SRAM, 512 KB of Flash
  • Ethernet, USB OTG, SPI, I2C, UART, CAN, GPIO, PWM, ADC, DAC


Board Pinout

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.






Getting started

#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);
    }
}

USB Serial Port



References