Hardware:
- WeAct Black Pill V2.0 (STM32F411CE)
- Witty Cloud board (ESP8266) to act as a Network Co-Processor
- Breadboard and jumper wires
- USB Type C cable
Software:
- Latest official Zephyr sources and SDK
- Blynk.NCP firmware binary (more on that later)
git clone https://github.com/Blynk-Technologies/BlynkNcpExample_Zephyr
cd BlynkNcpExample_Zephyr
git submodule update --init --recursive
Fill in the information from your Blynk Template:
cd samples/basic
echo 'CONFIG_BLYNK_TEMPLATE_ID="TMPxxxxxxxxx"' >> prj.conf
echo 'CONFIG_BLYNK_TEMPLATE_NAME="OurProduct"' >> prj.conf
Build:
export ZEPHYR_BASE=~/zephyrproject/zephyr
./build.sh blackpill_f411ce
Expected output
...
...
[168/169] Linking C executable zephyr/zephyr.elf
Memory region Used Size Region Size %age Used
FLASH: 59216 B 121472 B 48.75%
RAM: 23360 B 128 KB 17.82%
IDT_LIST: 0 GB 2 KB 0.00%
Generating files from build/basic/zephyr/zephyr.elf for board: blackpill_f411ce
image.py: sign the payload
image.py: sign the payload
image.py: sign the payload
image.py: sign the payload
[169/169] cd ....../build/basic/zephyr/zephyr.elf
[11/16] Performing build step for 'mcuboot'
[1/268] Preparing syscall dependency handling
[3/268] Generating include/generated/version.h
-- Zephyr version: 3.5.99 (/home/user/zephyrproject/zephyr), build: zephyr-v3.5.0-3603-g603c3af895b0
[267/268] Linking C executable zephyr/zephyr.elf
Memory region Used Size Region Size %age Used
FLASH: 27822 B 32 KB 84.91%
RAM: 24256 B 128 KB 18.51%
IDT_LIST: 0 GB 2 KB 0.00%
Generating files from build/mcuboot/zephyr/zephyr.elf for board: blackpill_f411ce
[268/268] cd ....../build/mcuboot/zephyr/zephyr.elf
[16/16] Completed 'mcuboot'
Use USB-C cable to connect the board to your PC.
To flash it, you need to hold the BOOT0
button, and press NRST
shortly (you will need to repeat this two times).
# Flash MCUboot
west flash --build-dir build/mcuboot
# Flash sample
west flash --build-dir build/basic
👉 Follow the detailed Witty Cloud flashing guide
Warning
When assembling the board, ensure that all USB ports are disconnected from any components, and that there is no power supply connected.
-
Use the solderless breadborad to connect your MCU to the NCP:
Main Witty 5V VCC G(GND) GND A2(RX) TXD A3(TX) RXD A5(RST) REST -
Connect your device using USB. The device will appear as a
CDC-ACM
serial. -
Use your favourite serial terminal software (
PuTTY
,minicom
,screen
) to access the serial console (115200 8N1
). -
The expected serial monitor output looks like this:
*** Booting Zephyr OS build zephyr-v3.5.0-3889-ge49d174be910 *** [00:00:03.002,000] <inf> blynk_example: Blynk.NCP host example [00:00:03.002,000] <inf> blynk_example: Firmware version: 0.0.1 [00:00:03.854,000] <inf> blynk_ncp: Blynk.NCP ready br 38400 [00:00:03.854,000] <inf> blynk_ncp: setting target br 115200 [00:00:03.883,000] <inf> blynk_ncp: Blynk.NCP ready br 115200 [00:00:03.886,000] <inf> blynk_ncp: NCP firmware: 0.6.3 [00:00:03.903,000] <inf> blynk_ncp: NCP state changed [Not Initialized] => [Configuration]
Ensure that the Blynk App is installed on your smartphone.
Open the Blynk App
-> click Add New Device
-> select Find Devices Nearby
- Use Blynk.Air to perform OTA update of your device firmware
- The firmware file can be found here:
./build/basic/zephyr/zephyr.signed.bin
- The firmware file can be found here:
- Learn about Zephyr firmware signing
- Use
west build -t menuconfig
to explore the available settings
Check out the troubleshooting guide
The community edition of Blynk.NCP is available for personal use and evaluation. If you're interested in using Blynk.NCP for commercial applications, feel free to contact Blynk. Thank you!