Using low cost LeafLab Maple Mini boards with mbed.

Dependencies:   mbed-MapleMini mbed

Using Maple Mini board with mbed

Sparkfun used to sell a board (now available on eBay and from other online sellers for less than $4) which provides an affordable and flexible way for users to try out new ideas and build prototypes. The board is equipped with an STM32F103CBT6 microcontroller compatible with the mbed NUCLEO-F103RB platform.

Microcontroller features

  • STM32F103CBT6 in LQFP48 package
  • ARM®32-bit Cortex®-M3 CPU
  • 72 MHz max CPU frequency
  • VDD from 2.0 V to 3.6 V
  • 128 KB Flash
  • 20 KB SRAM
  • GPIO (34) with external interrupt capability
  • 12-bit ADC (2) with 10 channels
  • RTC
  • Timers (4)
  • I2C (2)
  • USART (3)
  • SPI (2)
  • USB 2.0 full-speed
  • CAN

Board features

  • Small foot-print
  • Flexible board power supply: USB VBUS or external source (3.3V, 5V)
  • User LED: LED1
  • Two push buttons: RESET, USER BUTTON
  • Mini-B USB connector

Maple Mini board pinout

Courtesy of Wim Huiskamp /media/uploads/hudakz/maplemini_pinout.png Zoom in

Information

Only the labels printed in blue/white or green/white (i.e. PB_8, PC_13, D15, A0 ...) must be used in your code. The other labels are given as information (alternate-functions, power pins, ...). You can also use these additional pin names:

LED1=PB_1   SERIAL_TX=PA_2  I2C_SCL=PB_6  SPI_MOSI=PA_7  PWM_OUT=PB_3
            SERIAL_RX=PA_3  I2C_SDA=PB_7  SPI_MISO=PA_6
                                          SPI_SCK =PA_5
                                          SPI_CS  =PB_6

Schematic

The schematic is available here.

Using the mbed online compiler to build programs for Maple Mini

  • Create a program as if it was for a NUCLEO-F103RB board (select NUCLEO-F103RB as target platform in the online compiler).
    Or click here to import this demo into your online compiler (then you can skip the following two steps).
  • Add #include "MapleMini.h" to main.cpp before #include "mbed.h" (the position matters!).

Blinking on-board LED:

#include "MapleMini.h"
#include "mbed.h"
  
int main() {
    confSysClock();     //Configure system clock (72MHz HSE clock, 48MHz USB clock)
    
    Serial      pc(PA_2, PA_3);
    DigitalOut  myled(LED1);
    
    while(1) {
        myled = 1;      // turn the on-board LED on
        wait_ms(200);   // wait 200 milliseconds
        myled = 0;      // turn the on-board LED off
        wait_ms(1000);  // wait 1000 milliseconds
        pc.printf("Blink\r\n");
    }
}


Information

Additional example program using the Maple Mini board:


Programming the Maple mini board

You can use the NUCLEO virtual disk to program the Maple Mini (drag and drop programming). To do that, an additional NUCLEO board is needed (any type equipped with ST-LINK/V2-1 will do).

  • Remove the two jumpers from the CN2 connector as illustrated in Figure 8: /media/uploads/hudakz/nucleo_prog.png

    /media/uploads/hudakz/nucleo-c4.png

  • Connect the NUCLEO board CN4 debug connector to the Maple Mini board using flying wires as follows:
NUCLEO board
CN4 connector
Maple mini board
SWCLK<=>SWCLK (PA_14)
GND<=>GND
SWDIO<=>SWDIO (PA_13)
NRST<=>RESET

Warning

Please notice that VDD_TARGET is not connected. That works with the ST-Link programmer but could potentially damage the target micro controller in case it's running at a lower voltage (e.g. 2V5) than the programmer (e.g. 3V3). That's why it's recommended to connect also the VDD_TARGET line when an external programmer such as a Segger J-Link is hooked up to program the board.

  • Provide power for the Maple Mini board.

  • Connect the NUCLEO board to your PC using a USB cable.

  • Maple's flash memory is protected. In order to start downloading programs to the board the protection has to be removed. That could be acomplished with the STM32 ST-LINK Utility. Once installed and running, in Target->Settings switch to Hot Plug mode. /media/uploads/hudakz/st-link_01.png

  • In Target->Option bytes disable the Read Out Protection and turn the Flash sectors protection off as well. /media/uploads/hudakz/st-link_05.png

  • After that you'll be able to fully erase the chip (including the LeafLabs Maple boot loader).

Warning

Once the chip has been erased the board cannot be used with LeafLabs Maple IDE anymore!

  • Exit the STM32 ST-LINK Utility. From now on you'll be able to download programs to the board.

  • To program the Maple Mini board, click on the Compile button and save the binary to the NUCLEO virtual disk .

    For more details have a look at the User Manual, chapter 6.2.4 Using ST-LINK/V2-1 to program and debug an external STM32 application.

Using serial port (not just for debugging)

  • Connect an FTDI or similar USB-Serial converter to your PC and to an on-board serial port (for example PA_2, PA_3). Make sure you connect the on-board TX pin to the converter's RX pin and the on-board RX pin to the converter's TX pin.
  • In your code, create a Serial object (using TX and RX pin names of the connected serial port).
  • Use printf function to send serial messages to the connected PC.

Sending debug messages over the ST-Link virtual com port

In case you would like to spare the external USB-Serial converter for other purposes then there is available an alternative solution proposed by X M (bitman). You can use the ST-Link virtual com port also for debugging of programs running on the Maple Mini board. However, that will require a soldering iron (and probably some soldering skills). According to the User Manual, chapter 6.8 "USART communication", solder bridges (on the back side of the NUCLEO board) SB62 and SB63 should be ON, SB13 and SB14 should be OFF. In such case it is possible to connect another USART to the NUCLEO (ST-Link) CN3 connector using flying wires. For instance on STM32F103C8T6 board it is possible to use USART2 available on PA_2 (TX) and PA_3 (RX). Two flying wires shall be connected as follows:

Maple Mini board, pin PA_2 (Serial2 TX)<=>NUCLEO board CN3 connector, pin RX
Maple Mini board, pin PA_3 (Serial2 RX)<=>NUCLEO board CN3 connector, pin TX

A smart trick proposed by Nothing Special makes even soldering needless.
The point is to redirect the UART on the NUCLEO board by software (without modifying the solder bridges on the back side of the NUCLEO board) and convert it into a "Debugger". On the NUCLEO board that you are going to use as programmer/ debugger, choose any Serial port other than Serial2 (other than the default port used for standard UART) to be initialized as standard UART. In the program below (using NUCLEO-F103RB as programmer/debugger) Serial1 (PA_9, PA_10) was selected.

Debugger

#include "mbed.h" 

// declarations needed to change the parameters of stdio UART 
extern serial_t     stdio_uart; 
extern int          stdio_uart_inited; 

int main() {
    serial_init(&stdio_uart, PA_9, PA_10); // other than Serial2
    stdio_uart_inited = 1; 
    printf("Ready for debugging\r\n");
}


Once compiled (remember to select the NUCLEO board used for programing/debugging as target for the online compiler), download the "Debugger" program to the NUCLEO board. Please make sure you have the two jumpers in place on the CN2 connector when programming the NUCLEO board. Once downloaded to the NUCLEO board, remove the two jumpers again.



Offline compilation and debugging with CooCox CoIDE

NOTE: The pictures below are just for illustration (some belong to the STM32F103C8T6 - Blue Pill project).

  • I do not recommend to use the Beta version but rather install CoIDE V1.7.8.
  • Keep the NUCLEO board ( ST-LINK) connected to the Maple Mini board as in the set-up for online programming.
  • Export your program from the mbed online compiler to CooCox CoIDE.

/media/uploads/hudakz/export.png

  • Save the file into a folder on you PC's hard drive and unzip.

  • Run CoIDE and open the project.

  • On the menu bar click on Project. Choose Select Toolchain Path and select the path to the GNU Arm Embedded Toolchain. Once completed the path will apply to all projects. (It is not necessary to repeat this for each project but rather do it only once after installing the toolchain.)

    /media/uploads/hudakz/menu_select_toolchain.png

    /media/uploads/hudakz/edit_select_toolchain.png

  • To setup the debugger, open the Debugger tab and use the following settings:
    /media/uploads/hudakz/debugger_settings.png


  • To ensure that the execution of instructions during debugging is performed in the foreseen sequence, go to the Compile tab and select None (-O0) optimization. /media/uploads/hudakz/stm32f103ct6_off-line_compile.png

  • To be able to use the Serial class in application programs built offline, in the Project side bar navigate to headers/mbed/TARGET_NUCLEO_F103RB/TARGET_STM/TARGET_STM32F1 and open the device.h header file for editing by double-clicking on it. Then add a new line saying #include "mbed_config.h" as below:

    /media/uploads/hudakz/stm32f103c8t6_device_h.png After such modification the program should compile with no errors.
  • Another option is to use the default serial port which is automatically created by the mbed library. In such case no Serial object (like Serial pc(PA_2, PA_3);) has to be created. Instead the global printf function is called as below. In this case also the binary code becomes smaller. The default settings are 9600 bits/s, one start bit, eight data bits, no parity bit, one stop bit.

#include "MapleMini.h"
#include "mbed.h"
  
int main() {
    confSysClock();     //Configure system clock (72MHz HSE clock, 48MHz USB clock)
    
    //Serial      pc(PA_2, PA_3);
    DigitalOut  myled(LED1);
    
    while(1) {
        myled = 1;      // turn the on-board LED on
        wait_ms(200);   // wait 200 milliseconds
        myled = 0;      // turn the on-board LED off
        wait_ms(1000);  // wait 1000 milliseconds
        //pc.printf("Blink\r\n");
        printf("Blink\r\n");
    }
}
  • Open main.cpp for editing and rebuild the project by clicking on the Rebuild button.

  • Reprogram the board by clicking on the Download Code To Flash button:
    NOTE: Any time you launch the debugger the program is getting recompiled and the board reprogrammed. So you can skip this step. I included it just to illustrate how easily you can (re)program the board offline.

    /media/uploads/hudakz/stm32f103c8t6_download.png

  • Set up some debug points and launch the debugger by clicking on the Start Debug button:

    /media/uploads/hudakz/stm32f103c8t6_debug_btn.png

  • You can execute the instructions step by step (or run to the next debug point) and observe the variables and outputs whether they are changing as expected...

    /media/uploads/hudakz/stm32f103c8t6_debug.png

Happy coding and debugging :-)