-
PDF
Getting_started_with_STM32F10xxx_hardware_development.pdf
consumption. Refer to the STM32F10xxx or STM32F100xx reference manual (RM0008 or RM0041, respectively) for a description of the clock tree: ● RM0008 for STM32F101xx, STM32F102xx, STM32F103xx and STM32F105xx/107xx microcontrollers
in „Quarz an STM32F103 / Widerstand?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f4xx.c
configuration for STM32F4xx devices, * and is generated by the clock configuration tool * stm32f4xx_Clock_Configuration_V1.1.0.xls * * 1. This file provides two functions and one global variable to be called from * user
in „STM32F103 Bluepill mit 128kb lässt sich nicht flashen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
asl_unterstuetzte_prozessoren.txt
RS6000 MCORE XGATE 6800 6301 6811 68HC11K4 6805 68HC05 68HC08 68HCS08 6809 6309 68HC12 68HC12X S912ZVC19F0MKH S912ZVC19F0MLF S912ZVCA19F0MKH S912ZVCA19F0MLF S912ZVCA19F0WKH S912ZVH128F2CLQ S912ZVH128F2CLL S912ZVH64F2CLQ S912ZVHY64F1CLQ S912ZVHY32F1CLQ S912ZVHY64F1CLL S912ZVHY32F1CLL S912ZVHL64F1CLQ S912ZVHL32F1CLQ
in „gas as a68 m68k - was nimmt man ?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
datasheet_adc.pdf
STM32F103x6, STM32F103x8, STM32F103xB Electrical characteristics 5.3.17 12-bit ADC characteristics Unless otherwise specified, the parameters given in Table 45 are derived from tests performed under ambient
in „ARM Audio Spektrum Analyser“ · Digitale Signalverarbeitung / DSP / Machine Learning ·
-
PDF
STM8S105.pdf
register0x00 0x00 501A PF_IDR Port F input pin value register 0xXX 0x00 501B PF_DDR Port F data direction register 0x00 0x00 501C PF_CR1 Port F control register 1 0x00 32/127 DocID14771 Rev 10 STM8S105xx Memory
in „Handbuch STM8S Discovery“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ub_uart.h
------------- // Includes //-------------------------------------------------------------- #define STM32_F0 #ifdef STM32_F0 #include "stm32f0xx.h" #include "stm32f0xx_gpio.h" #include "stm32f0xx_rcc.h" #include "stm32f0xx_usart.h" #include "stm32f0xx_misc.h" #elif defined STM32_F1 #include "stm32f10x.h" #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "stm32f10x_usart.h" #include "misc.h" #endif //-------------------------------------------------------------- // Liste aller UARTs // (keine Nummer
in „STM32F030F4P6 und USART1“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
readme.txt
the STM3210C-EVAL board. @par Hardware and Software environment - This example runs on STM32F105/7 Connectivity line, STM32F2xx and STM32F4xx devices. - This example has been tested with STM3210C-EVAL RevB (STM32F105/7 devices), STM322xG-EVAL RevB (STM32F2xx) and STM324xG-EVAL RevB (STM32F4xx) - STM3210C-EVAL Set-up - use CN2 connector to connect the board to a PC host - STM322xG-EVAL Set-up - Use CN8 connector
in „STM32F2 - USB HID“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
user_manual_nucleo.pdf
STM32 MCU are disconnected to D1 and D0 (pin 7 and pin 8) on Arduino connector CN9 and ST Morpho connector CN10. PA2 and PA3 on STM32F103C8T6 (ST-LINK MCU) are disconnected to PA3 OFF and PA2 on STM32 MCU
in „USART1 issue with a STM32F030R8 Nucleo Board“ · µC & Digital Electronics ·
-
PDF
hardware_dev.pdf
consumption. Refer to the STM32F10xxx or STM32F100xx reference manual (RM0008 or RM0041, respectively) for a description of the clock tree: ● RM0008 for STM32F101xx, STM32F102xx, STM32F103xx and STM32F105xx/107xx microcontrollers
in „STM32: JTAG mit ST-LINK: Error in Initializing ST-Link device“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
en.DM00072315.pdf
bootloader, refer to the already mentioned AN2606. . Table 1. Applicable products Type Part numbers STM32F0 Series: – STM32F030xC, STM32F04xxx, STM32F07xxx, STM32F09xxx STM32F3 Series: – STM32F303xx, STM32F318xx, STM32F328xx, STM32F334xx, STM32F 358xx, STM32F378xx, STM32F398xx STM32F4 Series: – STM32F401xx
in „STM32 I2C zu Bootloader“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ws2812.c
calculation: * * freq = WS2812_TIM_CLK / (WS2812_TIM_PRESCALER + 1) / (WS2812_TIM_PERIOD + 1) * * STM32F4XX: * freq = 84000000 / (0 + 1) / (106 + 1) = 785 kHz = 1.274 us * * STM32F10X: * freq = 72000000 / (0 + 1) / ( 91 + 1) = 783 kHz = 1.277 us *-----------------------------------------------------
in „WS2812B mit Lib von Martin Hubáček auf F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
gpio.h
########################################################################################## */ enum STM32F1_IMODE_ENUM { STM32F1_ANALOG = 0, STM32F1_FLOATING = 1, STM32F1_PULLUP_PULLDOWN = 2, }__attribute__((packed)) ; typedef enum STM32F1_IMODE_ENUM STM32F1_IMODE; enum STM32F1_OMODE_ENUM { STM32F1_PUSHPULL = 0, STM32F1_OPENDRAIN = 1 }__attribute__((packed)) ; typedef enum STM32F1_OMODE_ENUM STM32F1_OMODE; enum STM32F1_OSPEED_ENUM { STM32F1_10MHZ = 1, STM32F1_2MHZ = 2, STM32F1_50MHZ = 3 }__attribute__((packed
in „STM32F103 und ADC DMA mehrere Kanäle“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
en.DM00155929.pdf
STM32F446xC/xE Errata sheet STM32F446xC/xE device limitations Silicon identification This errata sheet applies to the revision A of STM32F446xx microcontroller families. The STM32F446xx devices feature
in „Wer nutzt das Nucleo-64 und kann mir“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
settings.xml
" /> <stm3241g_eval file="board/stm3241g_eval.cfg" /> <stm3241g_eval_stlink file="board/stm3241g_eval_stlink.cfg" /> <stm32f0discovery file="board/stm32f0discovery.cfg" /> <stm32f3discovery file="board/stm32f3discovery.cfg
in „STM32 - Code-Blocks + GCC + GDB“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irmp.diff
define STM32_UART_COM USART2 # define STM32_UART_BAUD 115200 // 115200 Baud # include "stm32f4xx_usart.h" -#elif defined(ARM_STM32F10X) +#elif defined(ARM_STM32F10X) || defined(ARM_STM32F30X) # define STM32_UART_COM
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
irmp.diff
115200 Baud # include "stm32f4xx_usart.h" -#elif defined(ARM_STM32F10X) +#elif defined(ARM_STM32F10X) || defined(ARM_STM32F30X) # define STM32_UART_COM USART3 // UART3 on PB10 #elif defined(ARDUINO) // Arduino Serial implementation
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Bild
STM32 MCU und MPU Portfolio Übersicht
MHz Cortex-M7 240 MHz Cortex-M4 STM32F2 Up to 398 CoreMark 120 MHz Cortex-M3 STM32F4 Up to 608 CoreMark 180 MHz Cortex-M4 STM32H5 Up to 1023 CoreMark 250 MHz Cortex-M33 Mainstream MCUs STM32C0 114 CoreMark 48 MHz Cortex-M0+ STM32F3 245 CoreMark 72 MHz Cortex-M4 STM32G4 569 CoreMark 170 MHz Cortex-M4 Mixed-signal MCUs STM32F0 106 CoreMark 48 MHz Cortex-M0+ STM32G0 142 CoreMark 64 MHz Cortex-M0+ STM32F1 177 CoreMark 72 MHz Cortex-M3 Ultra-low Power MCUs STM32L0
in „Super-Kongresstag: STM32-H5-Vorstellung, Google IO, Raspberry Pi-Börsengang geplant“ · Softwareentwicklung · · Diagramme
-
Datei
system_stm32f30x.c
for STM32F30x devices, * and is generated by the clock configuration tool * stm32f30x_Clock_Configuration_V1.0.0.xls * * 1. This file provides two functions and one global variable to be called from * user
in „STM32 Takt Frage“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
compiler_output.txt
/STM32/STM32F303RE_test/CMSIS/device" -I"/hdd/stefan/Programmierung/STM32/STM32F303RE_test/CMSIS/core" -Og -g3 -Wall -fmessage-length=0 -ffunction-sections -c -MMD -MP -MF"startup/sysmem.d" -MT"startup/sysmem.o
in „STM32 läuft mit Debugger schneller als er soll“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4_discovery_lcd.h
the STM32F4DISCOVERY, STM32F4DIS-BB, STM32F4DIS-CAM * and STM32F4DIS-LCD modules. ****************************************************************************** * @attention * * THE PRESENT FIRMWARE WHICH IS
in „STM32F4Discovery mit CooCox CoOS-RTOS und printf“ · Projekte & Code ·
-
PDF
HAL_STM32F1.pdf
NA NA NA NA NA NA NA NA NA NA NA NA NA NA y p H U g stm32f1xx_hal_nand.c No No No No Yes Yes No No No No Yes Yes No No L M e stm32f1xx_hal_nand.h 4 r 1 1 stm32f1xx_hal_nor.c stm32f1xx_hal_nor.h No Yes No No Yes Yes No No No No Yes Yes No No v 8 0 r 5 8 s
in „CAN auf STM32F4“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LUHE_AD9650_funktion.h
---------*/ #include "LUHE_AD9850\LUHE_AD9650.h" /** @addtogroup Utilities * @{ */ /** @addtogroup STM32F4_DISCOVERY * @{ */ /** @addtogroup STM32F429I_DISCOVERY * @{ */ /** @defgroup STM32F429I-DISCOVERY_LOW_LEVEL * @brief This file provides set of firmware functions to manage AD9850s and push-button * available on STM32F429I-Discovery Kit from STMicroelectronics. * @{ */ /** @defgroup STM32F429I-DISCOVERY_LOW_LEVEL_Private_TypesDefinitions * @{ */ /** * @} */ /** @defgroup STM32F429I-DISCOVERY_LOW_LEVEL_Private_Defines
in „AD9850 Steuerwort,Berechnung richtig?“ · HF, Funk und Felder ·
-
PDF
stm32g030c6.pdf
Machine Translated by Google STM32G030x6/x8 Arm® Cortex®-M0+ 32-Bit-MCU, bis zu 64 KB Flash, 8 KB RAM, 2x USART, Timer, ADC, Komm.-I/Fs, 2,0–3,6ÿV Datenblatt - Produktionsdaten Merkmale Kern: Arm® 32-Bit Cortex®-M0+ CPU, Frequenz bis
in „Muß der STM32G programmiert werden?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32h753bit6.cpp
(uint32) 0, // 0x2F4 Reserved (uint32) 0, // 0x2F8 Reserved (uint32) 0, // 0x2FC Reserved (uint32) 0, // 0x300 Reserved (uint32) 0, // 0x304 Reserved (uint32) 0, // 0x308 Reserved (uint32) 0, // 0x30C Reserved
in „Virtual Function Elimination ARM GCC“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
DM00043574.pdf
3000 0x1000 33FF (2) Page 13 0x1000 3400 0x1000 37FF (2) Page 14 0x1000 3800 0x1000 3BFF (2) Page 15 0x1000 3C00 0x1000 3FFF 1. Only on STM32F303xB/C/D/E and STM32F358xC devices. 2. Only on STM32F303xD/E and
in „STM32F3 Discovery als USB Keyboard“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f30x.c
for STM32F30x devices, * and is generated by the clock configuration tool * stm32f30x_Clock_Configuration_V1.0.0.xls * * 1. This file provides two functions and one global variable to be called from * user
in „STM32F3 - USART 9MBaud“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
GxEPD_Example.ino
\STM32F1\variants\generic_stm32f103c\variant.h // C:\Users\xxx\Documents\Arduino\hardware\Arduino_STM32\STM32F1\variants\generic_stm32f103c\board\board.h // new mapping suggestion for STM32F1, e.g. STM32F103C8T6
in „ESP8266 mit Waveshare 7,5" E-Paper - funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
session1.txt
(sehr häufig auf Nucleo-Boards genutzt). ### Voraussetzungen * IDE: STM32CubeIDE oder STM32CubeMX * HAL-Lib für die spezifische Serie (z.B. STM32F103) * Systemtick durch `HAL_Init()` initialisiert ### `main.c` Code Hier ist der typische Aufbau der `main.c`. Wichtig ist,
-
Datei
system_stm32f4xx.c
for STM32F4xx devices, * and is generated by the clock configuration tool * stm32f4xx_Clock_Configuration_V1.0.0.xls * * 1. This file provides two functions and one global variable to be called from * user
in „STM32f4 TIM Base-Init“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f4xx.c
for STM32F4xx devices, * and is generated by the clock configuration tool * stm32f4xx_Clock_Configuration_V1.0.0.xls * * 1. This file provides two functions and one global variable to be called from * user
in „STM32F0 Discovery und UART1“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F429_Reference_Manual.pdf
0000 - 0xA000 0FFF STM32F415xx/17xx)/ AHB3 FMC control register Section 37.8: FMC register map on page 1680 (STM32F42xxx and STM32F43xxx) 64/1751 RM0090 Rev 19 RM0090 Memory and bus architecture Table 1. STM32F4xx
in „USB-C Dual-Role-Device DRD mit integriertem OTG FS PHY“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32_Reference_manual.pdf
0000 - 0xA000 0FFF STM32F415xx/17xx)/ AHB3 FMC control register Section 37.8: FMC register map on page 1680 (STM32F42xxx and STM32F43xxx) 64/1751 RM0090 Rev 19 RM0090 Memory and bus architecture Table 1. STM32F4xx
in „STM32F4 Timer Triggered DMA SPI – NSS Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f4xx.c
for STM32F4xx devices, * and is generated by the clock configuration tool * stm32f4xx_Clock_Configuration_V1.0.0.xls * * 1. This file provides two functions and one global variable to be called from * user
in „STM32F4 SPI Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f4xx.c
for STM32F4xx devices, * and is generated by the clock configuration tool * stm32f4xx_Clock_Configuration_V1.0.1.xls * * 1. This file provides two functions and one global variable to be called from * user
in „Keil Debugger mit STM32F4Discovery / veraltete Firmware im ST-Link“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f4xx.c
for STM32F4xx devices, * and is generated by the clock configuration tool * stm32f4xx_Clock_Configuration_V1.0.1.xls * * 1. This file provides two functions and one global variable to be called from * user
in „[STM32F407VG, Discovery-board] Timer-interrupt verwirrt mich“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F407VGT6.pdf
diagram of the memory map. Table 1 gives the boundary addresses of the peripherals available in all STM32F4xx devices. Table 1. STM32F4xx register boundary addresses Boundary address Peripheral Bus Register map FSMCcontrolregister (STM32F405xx/07xx and 0xA000 0000 - 0xA000 0FFF STM32F415xx/17xx)/ AHB3
in „ARM Controller "richtig" programmieren“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F407VGT6.pdf
diagram of the memory map. Table 1 gives the boundary addresses of the peripherals available in all STM32F4xx devices. Table 1. STM32F4xx register boundary addresses Boundary address Peripheral Bus Register map FSMCcontrolregister (STM32F405xx/07xx and 0xA000 0000 - 0xA000 0FFF STM32F415xx/17xx)/ AHB3
in „STM32F4 pointer Frage“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f4xx.c
configuration for STM32F4xx devices, * and is generated by the clock configuration tool * stm32f4xx_Clock_Configuration_V1.1.0.xls * * 1. This file provides two functions and one global variable to be called from * user
in „STM32 mit timer frequenz ausgeben“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.cpp
#include "../Inc/main.hpp" feedback clocksInit() { CMOS& cmos = CMOS::get(); STM32F107RCT6& stm32 = STM32F107RCT6::get(); RCC& rcc = stm32.get_rcc(); // Set Clock HSE in RCC to a valid Value before setting the Clock Source of the PLL to HSE // Otherwise, RCC wont let us set PLL
in „STM32F107 Ethernet RMII“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f4xx.c
for STM32F4xx devices, * and is generated by the clock configuration tool * stm32f4xx_Clock_Configuration_V1.0.0.xls * * 1. This file provides two functions and one global variable to be called from * user
in „STM32 - Fragen zum Einstieg“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f2xx.c
for STM32F2xx devices, * and is generated by the clock configuration tool * "STM32f2xx_Clock_Configuration_V1.0.0.xls" * * 1. This file provides two functions and one global variable to be called from * user
in „STM32F105R8T6 + USART2“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
spi_stm32f4xx.c
spi_hard_STM32F4XX_SPI3_PC10_PC11_PC12 #if defined( STM32F4XX ) #include "stm32f4xx_rcc.h" #include "stm32f4xx_spi.h" /** Globale Variablen ***********************************************************************
in „ST32F4xx SPI1 DMA funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f4xx.c
for STM32F4xx devices, * and is generated by the clock configuration tool * stm32f4xx_Clock_Configuration_V1.0.1.xls * * 1. This file provides two functions and one global variable to be called from * user
in „STM32F4 Discovery - I2S bitte um Hilfe“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
twi.h
is the manual implementation */ #define OFFSETOF(type, member) ((uint32_t) (&(((type *)(0))->member))) /* I2C Tx/Rx buffer size */ #define I2C_TXRX_BUFFER_SIZE 32 /* Redefinition of IRQ for F0 & L0 family */ #if defined(STM32F0xx) || defined(STM32L0xx) #if defined(I2C1_BASE
in „Wer nutzt das Nucleo-64 und kann mir“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
readme.txt
where the Flash memory density ranges between 16 and 32 Kbytes. - Low-density devices are STM32F101xx, STM32F102xx and STM32F103xx microcontrollers where the Flash memory density ranges between 16 and 32 Kbytes. - Medium-density Value line devices are STM32F100xx
in „Timer/Counter STM32“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
debug-log.txt
ocd_command ocd_command type ocd_STM32F722ZETx.cpu arp_waitstate halted 1000 Debug: 2561 1988 command.c:143 script_debug(): command - ocd_STM32F722ZETx.cpu ocd_STM32F722ZETx.cpu arp_waitstate halted 1000 Debug: 2562 1989 target.c:2905
in „STM32 Nucleo Debuggen funktioniert nicht mehr“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irmp_trunk.patch
============== --- irmp.c (revision 167) +++ irmp.c (working copy) @@ -682,6 +682,13 @@ # include "stm32f4xx_usart.h" #elif defined(ARM_STM32F10X) # define STM32_UART_COM USART3 // UART3 on PB10 +#elif defined(ARDUINO) + // we use the Arduino Serial Imlementation +#if defined(USB_SERIAL) +# include "
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
stm32f429i_discovery_lcd.h
/** ****************************************************************************** * @file stm32f429i_discovery_lcd.h * @author MCD Application Team * @version V1.0.1 * @date 28-October-2013 * @brief This file contains all the functions prototypes for the * stm32f429i_discovery_lcd.c driver.
in „STM32F429 Display per SPI ansteuern“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ws2812b.h
#ifndef WS2812B #define WS2812B #ifdef STM32F10X_MD #include <stm32f10x.h> #include <irq_stm32f103.h> #endif #if defined(STM32F303xE) || defined(STM32F303xD) || defined(STM32F303xC) #include <stm32f3xx.h> #include <irq_stm32f3xx.h> #endif #define
in „WS2812b Pixel mit STM32 und PWM/DMA ohne Hal“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f0xx_hal_msp.c
Header */ /** ****************************************************************************** * @file stm32f0xx_hal_msp.c * @brief This file provides code for the MSP Initialization * and de-Initialization codes. ****************************************************************************** * @attention
in „Programmierung - Doppelbelegung einer Taste“ · Mikrocontroller und Digitale Elektronik ·