Table of Contents

n-PRO-30

n-PRO-30

n-pro-30-10.jpg

n-PRO-30

License GPL 2.0
Status Tested-Blink
Buy at:
Categories
Hardware repo Bitbucket
Firmware repo

n-PRO-30 is an mbed-enabled Bluetooth Low Energy development board from the n-Blocks family, in the standard n-Blocks pro form factor.

Overview

n-PRO-30 is a simple Bluetooth Low Energy board based on Nordic nRF58232. It consists of temperature/humidity sensor, acceleration sensor and ambient light sensor which can be used to collect data and transmit it over bluetooth. The board supports the standard Nordic Software Development Tool-chain using Keil, IAR and GCC. It also supports ARM mbed tool-chain for rapid prototyping and development using mbed’s IDE and tool-chain with an extensive range of open-source software libraries.



MCU Features

  • 2.4 GHz transceiver
    • -96 dBm sensitivity in Bluetooth® Low Energy mode
    • Supported data rates: 1 Mbps, 2 Mbps Bluetooth Low Energy mode
    • -20 to +4 dBm TX power, configurable in 4 dB steps
    • On-chip balun (single-ended RF)
    • 5.3 mA peak current in TX (0 dBm)
    • 5.4 mA peak current in RX
    • RSSI (1 dB resolution)
  • ARM® Cortex®-M4 32-bit processor with FPU, 64 MHz
    • 215 EEMBC CoreMark score running from flash memory
    • 58 μA/MHz running from flash memory
    • 51.6 μA/MHz running from RAM
  • Flexible power management
    • 1.7 V–3.6 V supply voltage range
    • Fully automatic LDO and DC/DC regulator system
    • Fast wake-up using 64 MHz internal oscillator
    • 0.3 μA at 3 V in System OFF mode
    • 0.7 μA at 3 V in System OFF mode with full 64 kB RAM retention
    • 1.9 μA at 3 V in System ON mode, no RAM retention, wake on RTC
  • Memory
    • 512 kB flash/64 kB RAM
    • 256 kB flash/32 kB RAM



n-PRO-30 Features

  • Tayio module integrates nRF52832 and antenna
  • Simple and Low Power
  • Additional “industry standard” RF module socket
  • Miniature Li-Ion battery connector (optional)


Board Pinout

n-PRO-30 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

Blinky using Nordic SDK

C:\Program Files (x86)\GNU Tools ARM Embedded\7 2017-q4-major\bin
arm-none-eabi-gcc --version
<SDK>/components/toolchain/gcc
GNU_INSTALL_ROOT := $(PROGFILES)/GNU Tools ARM Embedded/4.9 2015q3   // Toolchain path
GNU_VERSION := 4.9.3  
GNU_PREFIX := arm-none-eabi
#include <stdbool.h>
#include <stdint.h>
#include "nrf_delay.h"
#include "boards.h"
 
int main(void)
{
    NRF_GPIO->DIRSET = (1 << 17);   // GPIO17 output,n-DAP LED
 
    /* Toggle LED */
    while (true)
    {
            NRF_GPIO->OUTSET = (1 << 17); // GPIO17 HIGH
            nrf_delay_ms(100);
            NRF_GPIO->OUTCLR = (1 << 17); // GPIO17 LOW
            nrf_delay_ms(100);
    }
}
<SDK>\examples\peripheral\blinky\pca10040\blank\armgcc
make
F:\prj_soft\nRF5_SDK_12.3.0_d7731ad\examples\peripheral\blinky\pca10040\blank\armgcc\_build\nrf52832_xxaa.bin



Blinky with mbed online compiler

#include "mbed.h"
 
DigitalOut led1(P0_17);
 
// main() runs in its own thread in the OS
int main() {
    while (true) {
        led1 = !led1;
        wait(0.05);
    }
}



Flash Memory Programming

Programming with Nordic nRF52-DK board

n-pro-30-15.jpg


USE-CASE examples