Ameba ARDUINO: Getting Started with AMB25

Introduction

Realtek RTL8720DF is a Wi-Fi and Bluetooth IC that supports 2.4GHz and 5GHz dual bands for Wi-Fi communication, and Bluetooth Low Energy (BLE) 5.0. The module is a highly integrated Wi-Fi and Bluetooth module with the RTL8720DF as the main SoC (System on Chip), it can be regarded as an SoC for the Wi-Fi and Bluetooth application with typical SBCs. AMB25 board is a development board that integrated with the module. AMB25 uses USB Type C connector and has Auto Upload circuit.

AMB25 board

get-start-1

The size of the board is 50.7*17.8 mm. It uses Type C USB to supply power, which is common in many smart devices.
Please refer to the following figure and table for the pin diagram and functions.

AMB25 Pinmap

get-start-2

 GPIO pinGPIO INTADCPWMUARTSPII2CIRSWD
0PA15   SPI1_SS   
1PA14   SPI1_SCLK   
2PA13 SERIAL2_RXSPI1_MISO   
3PA12 SERIAL2_TXSPI1_MOSI   
4PA30      
5PA28      
6PA26   I2C_SDAIR_RX (a) 
7PA25   I2C_SCLIR_TX (a) 
8PA27      SWD_DATA
9PB3A6     SWD_CLK
10PB2A5      
11PB1A4      
12PA7  LOG_TX    
13PA8  LOG_RX    
14PB23    IR_TX (b) 
15PB22    IR_RX (b) 
16PB19 SERIAL1_TXSPI_MISO   
17PB18 SERIAL1_RXSPI_MOSI   
18PB21  SPI_SS   
19PB20  SPI_SCLK   

There are 2 buttons besides USB connector. “RST” button is on the left and “Burn” button is on the right as shown on above figures. Refer the following table for the functions of the buttons.

Button FunctionsButton Process
Reset board1. Press then release “RST”
Enter upload mode1. Press and hold “Burn”
2. Press then release “RST”
3. Release “Burn”

The Upload Mode is required by board when erase flash or upload firmware. AMB25 has Auto Upload circuit. It can skip manually enter the Upload Mode.

Set up developing environment

Step 1. OS environment

AMB25 (RTL8720DF) board currently supports Windows OS 32-bits or 64-bits, Linux OS (Ubuntu) and macOS. To have the best experiences, please use the latest version of OS.

For any Linux OS (Ubuntu) related issues, refer to https://forum.amebaiot.com/t/ubuntu-linux-environment/2259.

For any macOS related issues, refer to https://forum.amebaiot.com/t/macos-environment/2260.

Step 2. Set up Arduino IDE

From version 1.6.5, Arduino IDE supports third-party hardware. Arduino IDE is used to develop applications on the board, and the Arduino basic examples (refer to the basic example link).
Arduino IDE can be downloaded in the Arduino website: https://www.arduino.cc/en/Main/Software
When the installation is finished, open Arduino IDE. Go to “File” -> “Preferences”.
And paste the following URL into the “Additional Boards Manager URLs” field: https://github.com/ambiot/ambd_arduino/raw/master/Arduino_package/package_realtek_amebad_index.json

Next, go to “Tools” -> “Board” -> “Boards Manager”:

get-start-3

The “Boards Manager” requires several seconds to refresh all hardware files (if the network is in bad condition, it may take longer). Search “Realtek” then find “Realtek Ameba Boards (32-bits ARM Cortex-M33 @200MHz)” in the list, click “Install”, then the Arduino IDE starts to download required files for AmebaD family includes AMB25.

get-start-4

If there is downloading issue (Bad internet or GitHub access), please refer to the following link at “Download/Software Development Kit”. There are 3 sections.
1. “AmebaD_Arduino_patch1_SDK”, please select at least 1 of the SDKs. There are 5 latest released SDK options.
2. “AmebaD_Arduino_patch2_Tools”, please select according to operating system. There are Windows, Linux, and macOS.
3. “AmebaD_Arduino_Source_Code”, this section is optional. Download for the latest source code.

Download the files selected, then unzip (patch1 and patch2 are compulsory). There are “Install.doc”/“Install.pdf” for you to refer to installation steps. According to your system, please run the installation tool in the “Offline_SDK_installation_tool” folder.
After the installation, select AmebaD as current connected board in “Tools” -> “Board” -> “Ameba ARM (32-bits) Boards” ->” AMB25/AMB26 (RTL8720DF)”:

get-start-4

Step 3. Install the Serial port

First, connect the board to computer via Type C USB.

After connected, the USB driver will be automatically installed. If there is any driver issue of connecting board, please go to https://www.prolific.com.tw/US/ShowProduct.aspx?p_id=225&pcid=41l for PLC2303GC driver. Check the COM Port number in Device Manager for Windows OS user:

get-start-5-1

Go to “Tools” -> “Port” and select the correct COM port.

get-start-5-1

Go to “Tools” -> “Serial Monitor”, set the baud rate as “115200”, and press the RST button to check the serial port connection.

get-start-5-1

get-start-5-1

Step 4. Erase flash

Depending on the batch of manufacturing, some boards require to erase first before using.
Select “Tools” -> “Erase Flash” -> “Enable”

get-start-6

Then enter the upload mode.
• Manually. Press and hold “Burn” button, press then release “RST” button and release “Burn” button.
• Auto. Select “Tools” -> “Auto Upload Mode” -> “Enable”. Note that only boards with auto upload circuit build-in can use the Auto Upload Mode, otherwise it will back to normal upload mode and wait for 5 seconds.
Next, Select “Sketch” -> “Upload”. “Erase flash done.” will show up.

get-start-7

get-start-7

Check the serial monitor and reset board by press RST button. If only “#” shows that means erase flash success. Remember to select “Tools” -> “Erase Flash” -> “Disable”.

get-start-7

Try the First Example

Step 1. Compile & Upload

Arduino IDE provides many built-in examples, which can be compiled, uploaded, and run directly on the boards. Here, we take the “Blink” example as the first try.
Open “File” -> “Examples” -> “01.Basics” -> “Blink”:

get-start-14

get-start-15

There is no “LED_BUILTIN”, must redefine any GPIO pin as the LED output.

get-start-15

Then connect an LED to board as show.

get-start-15

Next, compile the sample code directly. “Sketch” -> “Verify/Compile”. Then if there is no compile error, followed by “Sketch” -> “Upload”.
• Check and select “Tools” -> “Erase Flash” -> “Disable”.
• Enter the Upload Mode. Manual or Auto. Select “Tools” -> “Auto Upload Mode” -> “Enable”/ ”Disable”.
• “Verify/Compile” then “Upload”. (“Verify/Compile” can be skipped the “Upload” includes it.)
Successful upload will show “All images are sent successfully!”

get-start-16

Step 2. Run the Blink example

The board will be reset automatically, press RST button if board does not reset automatically. The LED will be blinking.

In each example, Arduino not only provides sample code but also detailed documentation, including wiring diagram, sample code explanation, technical details, …etc. These examples can be directly used on the board. Refer to detailed information of the Blink example in the link below:

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Blink

Tool Feature

Erase Flash

get-start-17

• Enable: erase the image in the flash memory without uploading the current image.
• Disable: upload the user code upon compilation is finished.

“Erase Flash” is default selected as “Disable” to upload the user code.

Standard Lib Enable

get-start-17

• Arduino_STD_PRTINF: enable the usage of Arduino avr “stdio.h” and “#include ” when using printf
• NA: printf() is using based on standard sdk _rtl_printf()

“Standard Lib Enable” is default selected as “NA”.

Upload Speed

get-start-17

Selection of uploading baud rate at 1,500,000 or 921,600.

Please confirm that QQ communication software is installed