Difference between revisions of "BLACK-PILL-HUB"

From Land Boards Wiki
Jump to navigation Jump to search
 
(44 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
[[File:tindie-mediums.png|link=https://www.tindie.com/products/land_boards/black-pill-hub-pcb-only/]]
 +
 
[[File:Black-Pill-Hub_P1383-720px.jpg]]
 
[[File:Black-Pill-Hub_P1383-720px.jpg]]
 +
 +
<video type="youtube">3o0MC8F1onk</video>
  
 
== Features ==
 
== Features ==
  
* Carrier for the [[STM32|STM32 Black Pill Board]]
+
* Carrier for the [[STM32_Black_Pill|STM32 Black Pill Board]]
** STM32F401/411 CPU
+
** STM32F4XX|STM32F401/411 CPU
 
** [https://www.aliexpress.com/item/4001098711269.html?spm=a2g0s.9042311.0.0.27424c4dqDjXsl AliExpress listing]
 
** [https://www.aliexpress.com/item/4001098711269.html?spm=a2g0s.9042311.0.0.27424c4dqDjXsl AliExpress listing]
 
* I2C Hub - [https://www.ti.com/lit/ds/symlink/pca9544a.pdf PCA9544A]
 
* I2C Hub - [https://www.ti.com/lit/ds/symlink/pca9544a.pdf PCA9544A]
 
** 4-channel
 
** 4-channel
 
** Independent 3.3V/5V power for each channel
 
** Independent 3.3V/5V power for each channel
* Separate interrupts for each channel
+
** Separate interrupts for each channel
 
* GVS connections for Black Pill pins
 
* GVS connections for Black Pill pins
 +
** Good for supplying power/ground to external I/O cards
 
* Reset switch
 
* Reset switch
 +
* Power options
  
 
=== Black Pill Module ===
 
=== Black Pill Module ===
Line 18: Line 24:
  
 
[[File:BlackPillBoard-720px.png]]
 
[[File:BlackPillBoard-720px.png]]
 +
 +
==== Reserved Pins ====
 +
 +
* PA0 - On-board USER KEY - needs INPUT_PULLUP
 +
* PC13 - On-board LED
 +
* PB2 - BOOT1
 +
** Pulling this pin down by external hardware causes the board to boot to serial
 +
** Can be ignored by holding both reset and BOOT1 buttons on the Black Pill card
 +
** Release reset button first
 +
* PA11 - USB-M
 +
* PA12 - USB-P
 +
* PA9 - Serial TX1
 +
* PA10 - Serial RX1
 +
 +
== Programming ==
 +
 +
* [https://github.com/stm32duino/wiki/wiki stm32duino wiki]
 +
** [https://github.com/stm32duino/wiki/wiki/Getting-Started Getting Started]
 +
** [https://github.com/stm32duino/wiki/wiki/API#analog Analog]
 +
** [https://github.com/stm32duino/wiki/wiki/API#wiring Wiring API]
 +
** [https://github.com/stm32duino/wiki/wiki/API#i2C I2C]
 +
** [https://github.com/stm32duino/wiki/wiki/API#EEPROM-Emulation EEPROM emulation]
 +
** [https://github.com/stm32duino/wiki/wiki/API#spi SPI]
 +
** [https://github.com/stm32duino/wiki/wiki/HardwareTimer-library#hardwaretimer HardwareTimer]
 +
 +
==== Second Serial Port - HardwareSerial====
 +
 +
From [https://github.com/stm32duino/wiki/wiki/API#hardwareserial HardwareSerial]. The STM32 MCU's have several U(S)ART peripherals. By convenience, the U(S)ARTx number is used to define the Serialxinstance:
 +
 +
* Serial1 for USART1
 +
* Serial2 for USART2
 +
* Serial3 for USART3
 +
* Serial4 for UART4
 +
** For LPUART1 this is SerialLP1
 +
* By default, only one Serialx instance is available mapped to the generic Serial name.
 +
 +
* To use a second serial port, a HardwareSerial object should be declared in the sketch before the setup() function:
 +
 +
<pre>
 +
//                      RX    TX
 +
HardwareSerial Serial1(PA10, PA9);
 +
 +
void setup() {
 +
  Serial1.begin(115200);
 +
}
 +
 +
void loop() {
 +
  Serial1.println("Hello World!");
 +
  delay(1000);
 +
}
 +
</pre>
  
 
== Connectors ==
 
== Connectors ==
 +
 +
[[file:BLACK-PILL-HUB-REV_2.PNG]]
  
 
=== J1 - 5V power ===
 
=== J1 - 5V power ===
Line 26: Line 85:
 
* 5V
 
* 5V
 
* Center positive
 
* Center positive
 +
* Don't need to power the card via this connector if the USB cable is plugged into the Black Pill CPU
  
 
=== J4 - 5V Power ===
 
=== J4 - 5V Power ===
Line 52: Line 112:
 
=== P3 - FTDI Module ===
 
=== P3 - FTDI Module ===
  
 +
* Not as necessary on the Black Pill card since downloads can be done with the [[BLACK-PILL-HUB#DFU_Programming|DFU mode]]
 
* Cheap FT232 module pinout
 
* Cheap FT232 module pinout
 +
* Remove 6 pin right angle header
  
 
[[File:FTDI_rot.jpg]]
 
[[File:FTDI_rot.jpg]]
Line 58: Line 120:
 
=== P4, P5, P6, P7 - I2C Interfaces #0-#3 ===
 
=== P4, P5, P6, P7 - I2C Interfaces #0-#3 ===
  
# INT*
+
* Four independent I2C interfaces
# SCL
+
** Black Pill Hub card is I2C Master
# SDA
+
* I2C mux connections to Black Pill Hub card
 +
** INT* - Connects to PB8
 +
** SCL - Connects to PB6
 +
** SDA - Connects to PB7
 +
* I2C Pins
 +
 
 +
# INT* - Connects to PB8
 +
# SCL - Connects to PB6
 +
# SDA - Connects to PB7
 
# VCC
 
# VCC
 
# GND
 
# GND
Line 66: Line 136:
 
=== P8 - SPI ===
 
=== P8 - SPI ===
  
# PA6 (MISO)
+
* 2x3 header
 +
* SPI Pins
 +
 
 +
# PA6 (MISO1)
 
# 3.3V
 
# 3.3V
# PA5 (SCK)
+
# PA5 (SCK1)
# PA7 (MOSI)
+
# PA7 (MOSI1)
 
# RES
 
# RES
 
# GND
 
# GND
Line 123: Line 196:
 
=== H1 - 3.3V source select ===
 
=== H1 - 3.3V source select ===
  
* 1-2 = power from 5V to 3.3V regulator
+
* 1-2 = Power from 5V to 3.3V regulator
 
* 2-3 = Power from Black Pill board 3.3V regulator
 
* 2-3 = Power from Black Pill board 3.3V regulator
  
Line 136: Line 209:
  
 
* Select the power to/from the (4) I2C interfaces
 
* Select the power to/from the (4) I2C interfaces
* Install in one of the two positions to power the external I2C interface from the board
+
* Install in one of the two positions to power the external I2C interface from the Hub board
* Remove if power comes in from external I2C interface
 
  
 
# 3.3V
 
# 3.3V
 
# 5V
 
# 5V
 +
 +
* Remove if power comes in from external I2C interface
  
 
=== H9 - Hub Chip Address ===
 
=== H9 - Hub Chip Address ===
Line 157: Line 231:
 
== Schematic ==
 
== Schematic ==
  
 +
* Board has silkscreen with rev on rear
 
* [http://land-boards.com/BLACK-PILL-HUB/BlackPillHub_Schematic-Rev1.pdf BLACK-PILL-HUB Schematic Rev 1]
 
* [http://land-boards.com/BLACK-PILL-HUB/BlackPillHub_Schematic-Rev1.pdf BLACK-PILL-HUB Schematic Rev 1]
 +
** Has title block errors, title. rev
 +
* [http://land-boards.com/BLACK-PILL-HUB/BlackPillHub_Schematic-Rev2.pdf BLACK-PILL-HUB Schematic Rev 2]
  
 
== Software ==
 
== Software ==
Line 169: Line 246:
 
* [[Arduino Based Test Station]]
 
* [[Arduino Based Test Station]]
 
** Issue with library
 
** Issue with library
 +
 +
== Programming ==
  
 
=== DFU Programming ===
 
=== DFU Programming ===
 +
 +
[[file:STM32F4-Black-Pill-Board-oriented.jpg]]
  
 
* Steps from [https://www.sgbotic.com/index.php?dispatch=pages.view&page_id=49 Programming|Program STM32 Black Pill (STM32F401 / F411) with Arduino IDE (Windows OS)]
 
* Steps from [https://www.sgbotic.com/index.php?dispatch=pages.view&page_id=49 Programming|Program STM32 Black Pill (STM32F401 / F411) with Arduino IDE (Windows OS)]
Line 182: Line 263:
 
** Select Tools > Board Part Number > BlackPill F411CE
 
** Select Tools > Board Part Number > BlackPill F411CE
 
** Under USB Support, select CDC (generic "Serial" supersede U(S)ART)
 
** Under USB Support, select CDC (generic "Serial" supersede U(S)ART)
** Under Upload method, select SMT32CubeProgrammer(DFU)
+
** Under Upload method, select STM32CubeProgrammer(DFU)
 
** Use the onboard BOOT0 and NRST button to put the board into bootloader mode:
 
** Use the onboard BOOT0 and NRST button to put the board into bootloader mode:
 
*** press and hold the BOOT0 button
 
*** press and hold the BOOT0 button
 
*** press and release NRST (reset) button to power cycle the processor
 
*** press and release NRST (reset) button to power cycle the processor
 
*** release BOOT0 button
 
*** release BOOT0 button
 +
*** Sometimes removing the USB cable and plugging it back in while pressing BOOT0 button works better
 
** Upload sketch
 
** Upload sketch
  
 
[[File:Arduino-Programming-Tools-Dropdown.png]]
 
[[File:Arduino-Programming-Tools-Dropdown.png]]
 +
 +
* Displays in IDE
 +
 +
<pre>
 +
USB speed  : Full Speed (12MBit/s)
 +
Manuf. ID  : STMicroelectronics
 +
Product ID  : STM32  BOOTLOADER
 +
SN          : 348C35983539
 +
FW version  : 0x011a
 +
Device ID  : 0x0431
 +
Device name : STM32F411xC/E
 +
Flash size  : 512 KBytes (default)
 +
Device type : MCU
 +
Device CPU  : Cortex-M4
 +
 +
 +
 +
Memory Programming ...
 +
Opening and parsing file: ODASTESTER.ino.bin
 +
  File          : ODASTESTER.ino.bin
 +
  Size          : 49132 Bytes
 +
  Address      : 0x08000000
 +
 +
 +
Erasing memory corresponding to segment 0:
 +
Erasing internal memory sectors [0 2]
 +
erasing sector 0000 @: 0x08000000 done
 +
erasing sector 0001 @: 0x08004000 done
 +
erasing sector 0002 @: 0x08008000 done
 +
Download in Progress:
 +
 +
 +
File download complete
 +
Time elapsed during download operation: 00:00:02.263
 +
 +
RUNNING Program ...
 +
  Address:      : 0x8000000
 +
Start operation achieved successfully
 +
</pre>
  
 
=== Other Programming ===
 
=== Other Programming ===

Latest revision as of 12:08, 6 April 2022

Tindie-mediums.png

Black-Pill-Hub P1383-720px.jpg

Features

  • Carrier for the STM32 Black Pill Board
  • I2C Hub - PCA9544A
    • 4-channel
    • Independent 3.3V/5V power for each channel
    • Separate interrupts for each channel
  • GVS connections for Black Pill pins
    • Good for supplying power/ground to external I/O cards
  • Reset switch
  • Power options

Black Pill Module

Not pin compatible with Blue Pill due to power pin locations

BlackPillBoard-720px.png

Reserved Pins

  • PA0 - On-board USER KEY - needs INPUT_PULLUP
  • PC13 - On-board LED
  • PB2 - BOOT1
    • Pulling this pin down by external hardware causes the board to boot to serial
    • Can be ignored by holding both reset and BOOT1 buttons on the Black Pill card
    • Release reset button first
  • PA11 - USB-M
  • PA12 - USB-P
  • PA9 - Serial TX1
  • PA10 - Serial RX1

Programming

Second Serial Port - HardwareSerial

From HardwareSerial. The STM32 MCU's have several U(S)ART peripherals. By convenience, the U(S)ARTx number is used to define the Serialxinstance:

  • Serial1 for USART1
  • Serial2 for USART2
  • Serial3 for USART3
  • Serial4 for UART4
    • For LPUART1 this is SerialLP1
  • By default, only one Serialx instance is available mapped to the generic Serial name.
  • To use a second serial port, a HardwareSerial object should be declared in the sketch before the setup() function:
//                      RX    TX
HardwareSerial Serial1(PA10, PA9);

void setup() {
  Serial1.begin(115200); 
}

void loop() {
  Serial1.println("Hello World!");
  delay(1000);
}

Connectors

BLACK-PILL-HUB-REV 2.PNG

J1 - 5V power

  • DC jack
  • 5V
  • Center positive
  • Don't need to power the card via this connector if the USB cable is plugged into the Black Pill CPU

J4 - 5V Power

  • 5mm terminal block

J7 - I2C

  • The I2C interface that goes to the I2C hub part
  1. SCL (PB6)
  2. SDA (PB7)
  3. 3.3V
  4. GND

P1 - 5V

  • 2x4 header with 5V from H2 (Rev 4 card)

P2 - Vbattery

  • Battery power to the Black Pill board
  1. GND
  2. Vbat

P3 - FTDI Module

  • Not as necessary on the Black Pill card since downloads can be done with the DFU mode
  • Cheap FT232 module pinout
  • Remove 6 pin right angle header

FTDI rot.jpg

P4, P5, P6, P7 - I2C Interfaces #0-#3

  • Four independent I2C interfaces
    • Black Pill Hub card is I2C Master
  • I2C mux connections to Black Pill Hub card
    • INT* - Connects to PB8
    • SCL - Connects to PB6
    • SDA - Connects to PB7
  • I2C Pins
  1. INT* - Connects to PB8
  2. SCL - Connects to PB6
  3. SDA - Connects to PB7
  4. VCC
  5. GND

P8 - SPI

  • 2x3 header
  • SPI Pins
  1. PA6 (MISO1)
  2. 3.3V
  3. PA5 (SCK1)
  4. PA7 (MOSI1)
  5. RES
  6. GND

P11/P12 - GVS Connector

  • Ground, Power, Signal pins
  • Pin near Black pill is signal
  1. PC13
  2. PC14
  3. PC15
  4. N/C
  5. PA0
  6. PA1
  7. PA2
  8. PA3
  9. PA4
  10. PA5/SCK1
  11. PA6/MISO1
  12. PA7/MOSI1
  13. PB0
  14. PB1
  15. PB2
  16. PB10

P12/P13 - GVS Connector

  • Ground, Power, Signal pins
  • Pin near Black pill is signal
  1. GND
  2. PB9
  3. I2C_INT (PB8)
  4. I2C_SDA (PB7)
  5. I2C_SCL (PB6)
  6. PB5
  7. PB4
  8. PB3
  9. PA15
  10. PA12
  11. PA11
  12. RX
  13. TX
  14. PA8
  15. PB15
  16. PB14
  17. PB13
  18. PB12

Headers

H1 - 3.3V source select

  • 1-2 = Power from 5V to 3.3V regulator
  • 2-3 = Power from Black Pill board 3.3V regulator

H2 - 5V Power Source

  • T-shaped header
  • Up - Power 5V from FTDI 5V
  • Down - Power 5V from Black Pill Hub USB power
  • Left - Power 5V from DC Jack

H3, H4, H5, H6 - I2C Power

  • Select the power to/from the (4) I2C interfaces
  • Install in one of the two positions to power the external I2C interface from the Hub board
  1. 3.3V
  2. 5V
  • Remove if power comes in from external I2C interface

H9 - Hub Chip Address

  • Select the 3-bit (A0-A2) address of the PCA9544A I2C hub
  • Remove for 1, install for 0

Switches

SW1 - Reset Switch

  • Press to reset Black Pill board

SW2 - Switch on/off J1, J4 power source

Schematic

Software

Testing

Programming

DFU Programming

STM32F4-Black-Pill-Board-oriented.jpg

  • Steps from Programming|Program STM32 Black Pill (STM32F401 / F411) with Arduino IDE (Windows OS)
    • Add the URL to Additional Board Manager URLs text box:
    • Go to Tools > Board > Boards Manager
    • Search for STM32, select latest version and click Install.
    • Download and install STM32CubeProg from ST.com: [1]
    • Start the STM32CubeProg
    • From the Tools > Board > STM32 Board, select Generic STM32F4 series
    • Select Tools > Board Part Number > BlackPill F411CE
    • Under USB Support, select CDC (generic "Serial" supersede U(S)ART)
    • Under Upload method, select STM32CubeProgrammer(DFU)
    • Use the onboard BOOT0 and NRST button to put the board into bootloader mode:
      • press and hold the BOOT0 button
      • press and release NRST (reset) button to power cycle the processor
      • release BOOT0 button
      • Sometimes removing the USB cable and plugging it back in while pressing BOOT0 button works better
    • Upload sketch

Arduino-Programming-Tools-Dropdown.png

  • Displays in IDE
USB speed   : Full Speed (12MBit/s)
Manuf. ID   : STMicroelectronics
Product ID  : STM32  BOOTLOADER
SN          : 348C35983539
FW version  : 0x011a
Device ID   : 0x0431
Device name : STM32F411xC/E
Flash size  : 512 KBytes (default)
Device type : MCU
Device CPU  : Cortex-M4



Memory Programming ...
Opening and parsing file: ODASTESTER.ino.bin
  File          : ODASTESTER.ino.bin
  Size          : 49132 Bytes
  Address       : 0x08000000 


Erasing memory corresponding to segment 0:
Erasing internal memory sectors [0 2]
erasing sector 0000 @: 0x08000000 done
erasing sector 0001 @: 0x08004000 done
erasing sector 0002 @: 0x08008000 done
Download in Progress:


File download complete
Time elapsed during download operation: 00:00:02.263

RUNNING Program ... 
  Address:      : 0x8000000
Start operation achieved successfully

Other Programming

SerialPropogramming (AN3155).PNG

PCB

Black-Pill-Hub P1385-720px.jpg

Assembly Sheet