NUCLEO-G071RB: Difference between revisions

From Embedded Workshop
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 7: Line 7:
'''NUCLEO-G07RB Schematic:''' https://www.st.com/resource/en/schematic_pack/mb1360-g071rb-c01_schematic.pdf<br>
'''NUCLEO-G07RB Schematic:''' https://www.st.com/resource/en/schematic_pack/mb1360-g071rb-c01_schematic.pdf<br>
'''STM32G0 Getting started - hardware development document:'''<br>
'''STM32G0 Getting started - hardware development document:'''<br>
https://www.st.com/resource/en/application_note/dm00443870-getting-started-with-stm32g0-series-hardware-development-stmicroelectronics.pdf
https://www.st.com/resource/en/application_note/dm00443870-getting-started-with-stm32g0-series-hardware-development-stmicroelectronics.pdf<br>
<br>
'''Firmware: https://www.st.com/en/embedded-software/stm32cubeg0.html'''<br>


==Processor Overview==
ST Website for the STM32G0 family: http://www.st.com/stm32g0<br>
ST Website for the STM32G0 family: http://www.st.com/stm32g0<br>
Product overview document, 117 pages: https://www.st.com/resource/en/datasheet/STM32G071RB.pdf<br>
Product overview document, 117 pages: https://www.st.com/resource/en/datasheet/STM32G071RB.pdf<br>
* Arm® Cortex®-M0+ 32-bit MCU
* Arm® Cortex®-M0+ 32-bit MCU
* 128 KB Flash
* 128 KB Flash
* 36 KB RAM
* 36 KB RAM
* 4x USART, timers, ADC, DAC, comm. I/Fs
* 1.7-3.6V
* 1.7-3.6V
* Up to 64MHz clock
* Up to 64MHz clock
* 32.768K crystal
* 32.768K crystal
* 4x USART, 14 timers, 2 - 12bit DACs, 2 I2C, 2 SPI (32Mbit/sec)
* 24MHz clock from STLink via MCO signal into PF0, pin 10 (Morpho CN7-29)
* 12-bit, 0.4 μs ADC (up to 16 ext. channels)
* Green LED, LD4, connects to PA5, active high (D13 on Arduino connector)
 
* Blue push-button, B1, connects to PC13, pin 3.  Shorts to ground when pressed.
==NUCLEO Board==
* USART2 connects to STLink for Serial to USB function
* 8MHz clock from STLink via MCO signal into PF0, pin 10 (Morpho CN7-29) - '''requires SB17 installed'''
<br>
* Green LED, LD4, connects to PA5, active high (D13 on Arduino connector)
* Blue push-button, B1, connects to PC13, pin 3.  Shorts to ground when pressed.
* USART2 connects to STLink for Serial to USB function
 
==Timers==
TIM1  16-bit
TIM2/TIM3/TIM4  One 32-bit, TIM2, or two 16-bit timers, TIM3 & TIM4
TIM4/TIM7  each 16-bit
TIM14  16-bit
TIM15/TIM16/TIM17  each 16-bit
LPTIM  16-bit
 
RM0444, STM32G0x1 advanced Arm®-based 32-bit MCUs, 1230 pages:
RM0444, STM32G0x1 advanced Arm®-based 32-bit MCUs, 1230 pages:
https://www.st.com/resource/en/reference_manual/dm00371828-stm32g0x1-advanced-armbased-32bit-mcus-stmicroelectronics.pdf
https://www.st.com/resource/en/reference_manual/dm00371828-stm32g0x1-advanced-armbased-32bit-mcus-stmicroelectronics.pdf
Line 28: Line 42:
https://www.st.com/content/st_com/en/support/learning/stm32-education/stm32-online-training/stm32g0-online-training.html
https://www.st.com/content/st_com/en/support/learning/stm32-education/stm32-online-training/stm32g0-online-training.html
<br>
<br>
Software Tools
==Software Tools==
* STM32G0 - STM32CubeMX: https://st-onlinetraining.s3.amazonaws.com/STM32G0-Ecosystem_CubeMX_Tool/index.html
* STM32G0 - STM32CubeIDE: https://www.st.com/en/development-tools/stm32cubeide.html
* STM32Cube G0 firmware package: https://st-onlinetraining.s3.amazonaws.com/STM32G0_Ecosystem_Firmware_drivers-%28FW%29/index.html
* https://www.st.com/en/embedded-software/stm32cube-mcu-mpu-packages.html
* https://www.st.com/en/embedded-software/stm32cube-mcu-mpu-packages.html
Keil MDK
Keil Pack installer: https://www.keil.com/dd2/st/stm32g031j6mx
Everything compiled and built well. Had a problem downloading: "Flash Download failed - Cortex - M0"
The issue is the lack of a programming method defined.
Project -> Options for Target xxx (Alt F7) -> Debug tab -> Use ST-Link Debugger -> Settings -> Flash Download ->
Add the STM32G0xx 32KB Flash algorithm with Address Range 080000000H - 08007FFFH.


Everything compiled and built well.<br>


Additional Websites / Notes:
==Additional Websites / Notes:==
http://www2.keil.com/stmicroelectronics-stm32/mdk
http://www2.keil.com/stmicroelectronics-stm32/mdk

Latest revision as of 13:23, 20 February 2023

In December, 2018, STMicro announced their STM32G0 - value line of microcontrollers. https://blog.st.com/stm32g0-mainstream-90-nm-mcu/
The NUCLEO-G071RB is STMicro's low cost development board for the STM32G071RBT6 processor. This board is often used as a training tool for the STM32G0 series devices.

Data Brief for NUCLEO-G071RB: https://www.st.com/resource/en/data_brief/nucleo-g071rb.pdf
Data Brief for STM32G071RB: https://www.st.com/en/microcontrollers-microprocessors/stm32g071rb.html
NUCLEO-G07RB Schematic: https://www.st.com/resource/en/schematic_pack/mb1360-g071rb-c01_schematic.pdf
STM32G0 Getting started - hardware development document:
https://www.st.com/resource/en/application_note/dm00443870-getting-started-with-stm32g0-series-hardware-development-stmicroelectronics.pdf

Firmware: https://www.st.com/en/embedded-software/stm32cubeg0.html

Processor Overview

ST Website for the STM32G0 family: http://www.st.com/stm32g0
Product overview document, 117 pages: https://www.st.com/resource/en/datasheet/STM32G071RB.pdf

* Arm® Cortex®-M0+ 32-bit MCU
* 128 KB Flash
* 36 KB RAM
* 1.7-3.6V
* Up to 64MHz clock
* 32.768K crystal
* 4x USART, 14 timers, 2 - 12bit DACs, 2 I2C, 2 SPI (32Mbit/sec)
* 12-bit, 0.4 μs ADC (up to 16 ext. channels)

NUCLEO Board

* 8MHz clock from STLink via MCO signal into PF0, pin 10 (Morpho CN7-29) - requires SB17 installed
* Green LED, LD4, connects to PA5, active high (D13 on Arduino connector)
* Blue push-button, B1, connects to PC13, pin 3.  Shorts to ground when pressed.
* USART2 connects to STLink for Serial to USB function

Timers

TIM1  16-bit
TIM2/TIM3/TIM4  One 32-bit, TIM2, or two 16-bit timers, TIM3 & TIM4
TIM4/TIM7  each 16-bit
TIM14  16-bit
TIM15/TIM16/TIM17  each 16-bit
LPTIM  16-bit

RM0444, STM32G0x1 advanced Arm®-based 32-bit MCUs, 1230 pages: https://www.st.com/resource/en/reference_manual/dm00371828-stm32g0x1-advanced-armbased-32bit-mcus-stmicroelectronics.pdf STM32G0 Online Training: https://www.st.com/content/st_com/en/support/learning/stm32-education/stm32-online-training/stm32g0-online-training.html

Software Tools

Everything compiled and built well.

Additional Websites / Notes:

http://www2.keil.com/stmicroelectronics-stm32/mdk