-
Datei
main_example_stm32.c
#include "irmp.h" #include "stdlib.h" #include <stdio.h> #define F_CPU 24000000 #ifndef F_CPU #error F_CPU unkown #endif void timer2ini(void); void TIM2_IRQHandler(void){ TIM_ClearITPendingBit(TIM2, TIM_IT_Update); irmp_ISR(); // call irmp ISR } int main(void) { timer2ini(); SystemInit(); irmp_init(); // initialize irmp IRMP_DATA irmp_data; while(1){ if(irmp_get_data (&irmp_data)){ //.... } } } void timer2ini(void){ TIM_TimeBaseInitTypeDef TIM_TimeBase_InitStructure; NVIC_InitTypeDef NVIC_InitStructure; RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2, ENABLE); //Set Timer TIM2 TIM_TimeBase_InitStructure.TIM_ClockDivision
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
STM32_USART_Test.c
#include <stdio.h> #include "stm32f10x_usart.h" #include "stm32f10x_rcc.h" #include "stm32f10x_gpio.h" #include <stddef.h> #include "stm32f10x.h" // Function prototypes void InitUart1(void); void InitUart2(void); void USART1_Send(char
in „STM32 und usart1/2 Initialisierung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_USART_Test.c
#include <stdio.h> #include "stm32f10x_usart.h" #include "stm32f10x_rcc.h" #include "stm32f10x_gpio.h" #include <stddef.h> #include "stm32f10x.h" // Function prototypes void InitUart1(void); void InitUart2(void); void USART1_Send(char
in „STM32 und usart1/2 Initialisierung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_USART_Test.c
#include <stdio.h> #include "stm32f10x_usart.h" #include "stm32f10x_rcc.h" #include "stm32f10x_gpio.h" #include <stddef.h> #include "stm32f10x.h" // Function prototypes void InitUart1(void); void InitUart2(void); void USART1_SendString
in „STM32 und usart1/2 Initialisierung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_USART_Test.c
#include <stdio.h> #include "stm32f10x_usart.h" #include "stm32f10x_rcc.h" #include "stm32f10x_gpio.h" #include <stddef.h> #include "stm32f10x.h" void USART_NVIC_Config(void); // Function prototypes void InitUart1(void); void InitUart2
in „STM32 und usart1/2 Initialisierung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f107.c
/** ****************************************************************************** * @file stm32f107.c * @author MCD Application Team * @version V1.0.0 * @date 11/20/2009 * @brief STM32F107 hardware configuration ****************************************************************************** *
in „STM32 System_Setup“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32F4.ld
OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm") /* Internal Memory Map*/ MEMORY { rom (rx) : ORIGIN = 0x08000000, LENGTH = 0x00100000 ram (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00020000 ccm (rwx) : ORIGIN = 0x10000000, LENGTH = 0x00010000 } _eram = 0x20000000 + 0x00020000; SECTIONS { .text : { KEEP(*(.isr_vector)) *(.text*) *(.rodata*) } > rom __etext = .; /* _sidata is used in coide startup code */ _sidata = __etext; .data : AT (__etext) { __data_start__ = .; /* _sdata is used in coide startup code */ _sdata = __data_start__; *(vtable) *(.data*) . = ALIGN(4); /* All data end
in „GCC STM32F4 -> Wie Variablen auf RAM bereiche verteilen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32F100.ld
ENTRY(_reset) MEMORY { /* memory map of STM32F100 */ Flash (rx): ORIGIN = 0x08000000, LENGTH = 256K SRAM0 (rwx): ORIGIN = 0x20000000, LENGTH = 64K } _stack_end = ORIGIN(SRAM0) + LENGTH(SRAM0); SECTIONS { .text : { _text_section_start = .; KEEP
in „uint64_t auf STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ub_uart.c
//-------------------------------------------------------------- // File : stm32_ub_uart.c // Datum : 28.07.2015 // Version : 1.5 // Autor : UB // EMail : mc-4u(@)t-online.de // Web : www.mikrocontroller-4u.de // CPU : STM32F4 // IDE : CooCox CoIDE 1.7.8 // GCC : 4.9 2015q2 //
in „STM32F4 USART“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ub_uart.h
//-------------------------------------------------------------- // File : stm32_ub_uart.h //-------------------------------------------------------------- //-------------------------------------------------------------- #ifndef __STM32F4_UB_UART_H #define __STM32F4_UB_UART_H /
in „STM32F4 USART“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f103.h
typedef enum {CAN_50KBPS, CAN_100KBPS, CAN_125KBPS, CAN_250KBPS, CAN_500KBPS, CAN_1000KBPS} BITRATE; #pragma once typedef enum {STANDARD_FORMAT = 0, EXTENDED_FORMAT} CAN_FORMAT; typedef enum {DATA_FRAME = 0, REMOTE_FRAME} CAN_FRAME; typedef struct { uint32_t id; /* 29 bit identifier */ uint8_t data[8]; /* Data field */ uint8_t len; /* Length of data field in bytes */ uint8_t ch; /* Object channel(Not use) */ uint8_t format; /* 0 - STANDARD, 1- EXTENDED IDENTIFIER */ uint8_t type; /* 0 - DATA FRAME, 1 - REMOTE FRAME */ } CAN_msg_t; bool CANInit(BITRATE bitrate, int remap); void CANReceive(CAN_msg_t
in „Arduino Blue Pill CAN bibliothek“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_spi_eigen.c
// Programm zur initialisierung der SPI-Schnittstelle + Schreibvorgang #include "stm32_spi_eigen.h" GPIO_InitTypeDef GPIO_InitStructure; SPI_InitTypeDef SPI_InitStructure; void initNSS() { //RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA,ENABLE); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
in „AD9833 mittels STM32F072 per SPI ansteuern“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f107.c
/** ****************************************************************************** * @file stm32f107.c * @author MCD Application Team * @version V1.0.0 * @date 11/20/2009 * @brief STM32F107 hardware configuration ****************************************************************************** *
in „lwIP 1.4.1 + freeRTOS 8.2.3 + stm32f107vb“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ub_irsnd.c
//-------------------------------------------------------------- // File : stm32_ub_irsnd.c // Datum : 14.06.2013 // Version : 1.0 // Autor : UB // EMail : mc-4u(@)t-online.de // Web : www.mikrocontroller-4u.de // CPU : STM32F4 // IDE : CooCox CoIDE 1.7.0 // Module : IRSND, TIM
in „IRSND auf STM32F0“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f446.c
#include <stdlib.h> #include <stdint.h> #include "stm32f4_regs.h" #include "usart.h" #include "gpio.h" #define CONFIG_HSE_HZ 16000000 #define CONFIG_PLL_M 16 #define CONFIG_PLL_N 336 #define CONFIG_PLL_P 2 #define CONFIG_PLL_Q 7 #define PLLCLK_HZ (((CONFIG_HSE_HZ
in „Linux auf dem STM32 externes RAM“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ub_uart.c
//-------------------------------------------------------------- // File : stm32_ub_uart.c // Datum : 28.11.2013 // Version : 1.3 // Autor : UB // EMail : mc-4u(@)t-online.de // Web : www.mikrocontroller-4u.de // CPU : STM32F4 // IDE : CooCox CoIDE 1.7.0 // Module : GPIO, USART
in „STM32F030F4P6 und USART1“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ub_rng.c
//-------------------------------------------------------------- // File : stm32_ub_rng.c // Datum : 23.02.2013 // Version : 1.0 // Autor : UB // EMail : mc-4u(@)t-online.de // Web : www.mikrocontroller-4u.de // CPU : STM32F4 // IDE : CooCox CoIDE 1.7.0 // Module : RNG // Funktion
in „Random Number Generator läuft nicht richtig,stm32f429“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f103.h
typedef enum {CAN_50KBPS, CAN_100KBPS, CAN_125KBPS, CAN_125KBPS32MHZ, CAN_125P1KBPS31P9MHZ,CAN_250KBPS, CAN_500KBPS, CAN_1000KBPS} BITRATE; typedef enum {STANDARD_FORMAT = 0, EXTENDED_FORMAT} CAN_FORMAT; typedef enum {DATA_FRAME = 0, REMOTE_FRAME} CAN_FRAME; typedef struct { uint32_t id; /* 29 bit identifier */ uint8_t data[8]; /* Data field */ uint8_t len; /* Length of data field in bytes */ uint8_t ch; /* Object channel(Not use) */ uint8_t format; /* 0 - STANDARD, 1- EXTENDED IDENTIFIER */ uint8_t type; /* 0 - DATA FRAME, 1 - REMOTE FRAME */ } CAN_msg_t; bool CANInit(BITRATE bitrate, int remap); void
in „Arduino Blue Pill & CAN mit SN65HVD230“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f103.h
#pragma once typedef enum {CAN_50KBPS, CAN_100KBPS, CAN_125KBPS, CAN_250KBPS, CAN_500KBPS, CAN_1000KBPS} BITRATE; typedef enum {STANDARD_FORMAT = 0, EXTENDED_FORMAT} CAN_FORMAT; typedef enum {DATA_FRAME = 0, REMOTE_FRAME} CAN_FRAME; typedef struct { uint32_t id; /* 29 bit identifier */ uint8_t data[8]; /* Data field */ uint8_t len; /* Length of data field in bytes */ uint8_t ch; /* Object channel(Not use) */ uint8_t format; /* 0 - STANDARD, 1- EXTENDED IDENTIFIER */ uint8_t type; /* 0 - DATA FRAME, 1 - REMOTE FRAME */ } CAN_msg_t; bool CANInit(BITRATE bitrate, int remap); void CANReceive(CAN_msg_t
in „Arduino Blue Pill & CAN mit SN65HVD230“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f103.h
typedef enum {CAN_50KBPS, CAN_100KBPS, CAN_125KBPS, CAN_250KBPS, CAN_500KBPS, CAN_1000KBPS} BITRATE; #pragma once typedef enum {STANDARD_FORMAT = 0, EXTENDED_FORMAT} CAN_FORMAT; typedef enum {DATA_FRAME = 0, REMOTE_FRAME} CAN_FRAME; typedef struct { uint32_t id; /* 29 bit identifier */ uint8_t data[8]; /* Data field */ uint8_t len; /* Length of data field in bytes */ uint8_t ch; /* Object channel(Not use) */ uint8_t format; /* 0 - STANDARD, 1- EXTENDED IDENTIFIER */ uint8_t type; /* 0 - DATA FRAME, 1 - REMOTE FRAME */ } CAN_msg_t; bool CANInit(BITRATE bitrate, int remap); void CANReceive(CAN_msg_t
in „Arduino Blue Pill & CAN mit SN65HVD230“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f103.h
typedef enum {CAN_50KBPS, CAN_100KBPS, CAN_125KBPS, CAN_125KBPS32MHZ, CAN_125P1KBPS31P9MHZ,CAN_250KBPS, CAN_500KBPS, CAN_1000KBPS} BITRATE; typedef enum {STANDARD_FORMAT = 0, EXTENDED_FORMAT} CAN_FORMAT; typedef enum {DATA_FRAME = 0, REMOTE_FRAME} CAN_FRAME; typedef struct { uint32_t id; /* 29 bit identifier */ uint8_t data[8]; /* Data field */ uint8_t len; /* Length of data field in bytes */ uint8_t ch; /* Object channel(Not use) */ uint8_t format; /* 0 - STANDARD, 1- EXTENDED IDENTIFIER */ uint8_t type; /* 0 - DATA FRAME, 1 - REMOTE FRAME */ } CAN_msg_t; bool CANInit(BITRATE bitrate, int remap); void
in „Arduino Blue Pill & CAN mit SN65HVD230“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32_DS1307.pdf
the left side: GND, SDA, SCL, VCC (U = 3,3V). For I2C and USB communication we use a Black Pill (STM32F103C8T6) We only write and read the seven yellow timekeeper registers 0x00 up to 0x06. “When you power up the module the clock halt (CH) bit in the seconds register will be set to a 1.” That means,
in „I2C STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
hy-stm32_schematic.pdf
PB12/SPI2_NSS/I2S2_WS/I2C2_SMBA/USART3_CK/TIM1_BKIN 51 PB12 1 C27 1 C28 0.1uF U3 22P 22P PL2303HX STM32F10xVxT6 PA4 1 8 3V3 2 2 PA6 2 CS VCC 7 3V3 GND 3V3 3 Q HOLD 6 PA5 所有 IO均已引出 4 W C 5 PA7 1 2 1 2 4 1 9 1 2 3 D IO GND D USB 接口 V E A C E E E B B D C B B D C A A A V N GND M25Pxx 3 P P P P P P P P P
-
PDF
stm32g4.pdf
stm32g4.pdf
in „stm32g431 st-link swclk swdio“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
stm32g4.pdf
stm32g4.pdf
in „stm32g431 st-link swclk swdio“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
stm32g4.pdf
stm32g4.pdf
in „stm32g431 st-link swclk swdio“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsndconfig.h
------------------------------------------------------------------------------------------- * ARM STM32 section: *--------------------------------------------------------------------------------------------------------------------------------------------------- */ #elif defined (ARM_STM32) // use B6
in „IRSND Daten für Roomba“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsndconfig.h
------------------------------------------------------------------------------------------- * ARM STM32 section: *--------------------------------------------------------------------------------------------------------------------------------------------------- */ #elif defined (ARM_STM32) // use B6
in „IR Fernbedienung mit IRSND“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
code */ uint32_t byteswritten, bytesread; /* File write/read counts */ uint8_t wtext[] = "This is STM32 working with FatFs"; /* File write buffer */ uint8_t rtext[100]; /* File read buffer */ /* STM32F107xC HAL library initialization: - Configure the Flash prefetch - Systick timer is configured by default
in „FatFS Beispiel STM3210C-EVAL f_open Fehler“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Präsentationsfolie zur STM32H5 Performance
Boosting application performance STM32 STM32H5 Arm® Cortex®-M33 at 250 MHz 375 DMIPS & 1023 CoreMark Instruction and data cache for internal and external memory (ART Accelerator™) Mathematics accelerators: FMAC and Cordic CoreMark 1200 >70% 900 1023 600 608 300 298 STM32F2 STM32F4 STM32H5 ST
in „Super-Kongresstag: STM32-H5-Vorstellung, Google IO, Raspberry Pi-Börsengang geplant“ · Softwareentwicklung · · Screenshots
-
Datei
main.c
============= - this file must be inserted in a project containing the following files : o system_stm32l0xx.c, startup_stm32l053xx.s o stm32l0xx.h to get the register definitions o CMSIS files =============================================================================== ##### How to test this example
in „STM32: SysTick_Config“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Final_Program_PWM-AC__synchronised.pdf
#include "stm32l1xx.h" #include "stm32_eval.h" /* Private typedef -----------------------------------------------------------*/ TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure; TIM_OCInitTypeDef TIM_OCInitStructure;
in „STM32L1xxx µC displaying memory contents“ · µC & Digital Electronics ·
-
Datei
main.c
/stm32f4xx.h" // "cmsis_boot/system_stm32f4xx.c" // In Configuration diese Define hinzufügen : // "STM32F429_439xx" , "__ASSEMBLY__" , "USE_STDPERIPH_DRIVER" //--------------------------------------------
in „Random Number Generator läuft nicht richtig,stm32f429“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F746-DISCO-OSCI.pdf
STM32F746G-DISCO-OSCI – recording into “Wave file” on SD-Card STM32F746G-DISCO-OSCI – only an “Estimation-Iron” (free translation from “Schätzeisen” ;-) or maybe a little bit more? The intention for this project: - Getting in touch with the STM32F7xx device family - Evaluation of STemWIN for GUI development So I bought my first “STM32F746G-DISCO”... ...and nothing is better for evaluation and whirl up potential problems more, than making a
in „STM32F746G-DISCO-OSCI mit WAV-Recording auf SD-Karte“ · Projekte & Code ·
-
Bild
STM32F429I-DISC1 Discovery Board in Verpackung
STM32 F4 Discovery ST life.augmented STM32F429 MCU, HIGH PERFORMANCE WITH CORTEX-M4 AND CHROM-ART ACCELERATOR™ Evaluation board with STM32F429ZIT6 MCU (180 MHz/225 DMIPS execution performance from Flash
in „[V] STM32F4 Evalboard, Neu und OVP“ · Markt · · Fotos
-
Datei
main.c
********************************************* */ #include <stdio.h> #include <string.h> #include "stm32f30x.h" #include "stm32f30x_rcc.h" #include "stm32f30x_misc.h" #include "stm32f30x_gpio.h" #include "stm32f30x_dma.h" #include "stm32f30x_usart.h" #include "gpioctrl.h" #include "usart2dmactrl.h" GPIO_InitTypeDef
in „STM32F303 USART2 DMA1 funktioniert halblebig ?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
********************************************* */ #include <stdio.h> #include <string.h> #include "stm32f30x.h" #include "stm32f30x_rcc.h" #include "stm32f30x_misc.h" #include "stm32f30x_gpio.h" #include "stm32f30x_dma.h" #include "stm32f30x_usart.h" #include "gpioctrl.h" #include "usart2dmactrl.h" GPIO_InitTypeDef
in „STM32F303 USART2 DMA1 funktioniert halblebig ?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4x7_eth_conf.h
/** ****************************************************************************** * @file stm32f4x7_eth_conf.h * @author MCD Application Team * @version V1.0.0 * @date 31-October-2011 * @brief Configuration file for the STM32F4x7 Ethernet driver. **********************************************
in „Olimex STM32E407, FreeRTOS und lwip“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Chatverlauf mit Programmiercode für STM32F411CEU
Hallo! Ich möchte eine analoge Spannung an einem STM32F411CEU einlesen. Bitte schreibe mir den Quellcode zum Einlesen und Ausgeben einer analogen Spannung für STM32CubeIDE Hallo! Natürlich kann ich dir dabei helfen. Hier ist ein Beispielcode zum Einlesen und Ausgeben einer analogen Spannung mit dem STM32F411CEU in STM32CubeIDE: c #include "stm32f4xx_hal.h" ADC_HandleTypeDef hadc1; void SystemClock_Config(void); static void MX_GPIO_Init(void); static void MX_ADC1_Init(void); int main(void) { HAL_Init
in „STM32F411CEU + Thermoelement - Erster Versuch eines Datenauslesens -“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Bild
Forum-Post über STM32CubeIDE für Visual Studio Code
NEW STM32CubeIDE for Visual Studio Code: from prerelease to official release Maxime_MARCHETTO Community manager 2025-10-13 6:00 AM Since May, we have been offering a prerelease version (3.x) of the STM32CubeIDE
in „Neuer OrangePi, neue Mikrocontroller und dazugehörende Software“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
irsndconfig.h
------------------------------------------------------------------------------------------- * ARM STM32 with HAL section - don't change here, define IRSND_Transmit_GPIO_Port & IRSND_Transmit_Pin in STM32Cube (Main.h) *--------------------------------------------------------------------------------------------------------------------------------------------------- */ #elif defined (ARM_STM32_HAL) // IRSND_Transmit_GPIO_Port & IRSND_Transmit_Pin must be defined in STM32Cube # define IRSND_PORT_LETTER IRSND_Transmit_GPIO_Port//Port of Transmit PWM Pin e.g. # define IRSND_BIT_NUMBER IRSND_Transmit_Pin
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
test.c
if(tempRes != FR_OK) { // FatFs Format Error Error_Handler(); } else { tempRes = f_open(&MyFile, "STM32.TXT", FA_CREATE_ALWAYS | FA_WRITE); if(tempRes != FR_OK) { /* 'STM32.TXT' file Open for write Error */ Error_Handler(); } else { tempRes = f_write(&MyFile, wtext, sizeof(wtext), (void *)&byteswritten); if((byteswritten == 0) || (tempRes != FR_OK)) { /* 'STM32.TXT' file Write or EOF Error */ Error_Handler(); } else { f_close(&MyFile); tempRes = f_open(&MyFile, "STM32.TXT", FA_READ); if(tempRes != FR_OK) { /* 'STM32.TXT' file Open for read Error */ Error_Handler
in „STM32F7 FatFS mit µSD“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4xx_it.h
//=========================================================================== // stm32f4xx_it.h //=========================================================================== /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F4xx_IT_H #define __STM32F4xx_IT_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx.h" /* Exported types ---------------------------
in „STM32: Drama mit "Hard Fault Error"“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f4xx.h" #include "stm32f4xx_conf.h" #include "stm32_ub_usb_cdc.h" #include "stm32_ub_led.h" #include "stm32_ub_adc1_single.h" #include <stdio.h> int main(void){ char buf[APP_TX_BUF_SIZE]; USB_CDC_RXSTATUS_t
in „STM32F4 sprintf mit float“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.cpp
#include <xpcc/architecture.hpp> #include <stdint.h> #include <xpcc/workflow.hpp> typedef xpcc::stm32::SpiMaster3 MySpi3; GPIO__OUTPUT(MPL115A1_CS, B, 5); static bool initClock() { xpcc::stm32::Clock::enablePll(xpcc::stm32::Clock::PLL_HSI, 8, 168); return xpcc::stm32::Clock::switchToPll(); } MAIN_FUNCTION { initClock(); xpcc::stm32::SysTickTimer::enable(); MPL115A1_CS::setOutput(true); MySpi3::initialize(MySpi3::MODE_0, MySpi3::PRESCALER_256); MySpi3::configurePins(MySpi3::REMAP_PC10_PC11_PC12); while (1) { MPL115A1_CS::setOutput
in „MOSI-Pegel viel zu niedrig, aber warum?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
adc.h
#ifndef STM32F1_ADC_H_ #define STM32F1_ADC_H_ /* ########################################################################################################################################################## */ /* #
in „STM32F103 und ADC DMA mehrere Kanäle“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Dialogfenster des STM32 Sidekick KI-Assistenten
STM32 Sidekick To unlock more advanced features with STM32 Sidekick, please sign-in to your MyST account Hi, I am STM32 Sidekick. I can assist you in retrieving the appropriate information from datasheets
in „Raspberry Pi CM0 bei AliExpress, STMicroelectronics mit PX5, neue Messtechnik und AI-Assistenten“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Bild
Portfolio-Übersicht der STM32MP-Mikroprozessoren
Discover our portfolio HIGH END STM32MP25 2x Cortex-A35 1.5GHz 1x Cortex-M33 400MHz 32-bit DDR4/LPDDR4/DDR3L GPU/NPU, H264 enc/dec 3x ETH w/ switch, PCIe 2.1, USB3 MID TIER STM32MP23 2x Cortex-A35 1.5GHz 1x Cortex-M33 400MHz 16-bit DDR4/LPDDR4/DDR3L GPU/NPU, H264 dec 2x ETH STM32MP15 2x Cortex-A7 800MHz 1x Cortex-M4 209MHz 32-bit DDR3/LPDDR3/LPDDR2 GPU 1x ETH ENTRY LEVEL STM32MP13 1x Cortex-A7 1GHz 16-bit DDR3/LPDDR3/LPDDR2 2x ETH STM32MP21 1x Cortex-A35 1.5GHz 1x Cortex-M33
in „STMicroelectronics liefert neue MPU, GigaDevice partnert mit Segger, neue FPGAs und mehr“ · Mikrocontroller und Digitale Elektronik · · Diagramme
-
Datei
main_mod.c
#include "stm32f10x_lib.h" #include "stm32f10x_map.h" #include "stm32f10x_rcc.h" #include "stm32f10x_gpio.h" #include "bits.h" #include"stm32f10x_usart.h" #include"stm32f10x_usart.c" #define STACK_TOP 0x20000800 #
in „Problem mit STM32-H103+Eclipse+OpenOCD“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f10x_lib.h" #include "stm32f10x_map.h" #include "stm32f10x_rcc.h" #include "stm32f10x_gpio.h" #include "bits.h" #include"stm32f10x_usart.h" #include"stm32f10x_usart.c" #define STACK_TOP 0x20000800 #
in „[Cortex-M3] Problem mit dem UART“ · Mikrocontroller und Digitale Elektronik ·