-
Datei
test.c
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
main.c
Formatting the uSD card will delete all content on the device */ if(f_mkfs((TCHAR const*)SDPath, 0, 0) != FR_OK) { /* FatFs Format Error */ Error_Handler(); } else { /*##-4- Create and Open a new text file object with write access #####*/ if(f_open(&MyFile, "STM32.TXT"
in „FatFS Beispiel STM3210C-EVAL f_open Fehler“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
oled_demo.c
0x49, 0x7b, 0x32, 0x00 }, // Ascii 54 = '6' { 0x00, 0x01, 0x01, 0x71, 0x79, 0x0f, 0x07, 0x00 }, // Ascii 55 = '7' { 0x00, 0x36, 0x7f, 0x49, 0x49, 0x7f, 0x36, 0x00 }, // Ascii 56 = '8' { 0x00, 0x06, 0x4f, 0x69, 0x39,
in „I2C Display einfache Frage“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Zacher_Projektarbeit_2015.pdf
of Science ElektrotecModellbasierte Softwareentwicklung Prof. Dr. Zacher für Embedded Controller SMT32F4 Aufgabe für Projektarbeit Modellbasierte Softwareentwicklung mit MATLAB für Embedded Controller SMT32F4-Discovery dr@szacher.de www.zacher-automation.de Beginn: 10.04.2015 Abgabe: __________ Das klassische
in „STM32F4-Discovery Board mit Matlab/Simulink“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Zacher_Projektarbeit_2015.pdf
of Science ElektrotecModellbasierte Softwareentwicklung Prof. Dr. Zacher für Embedded Controller SMT32F4 Aufgabe für Projektarbeit Modellbasierte Softwareentwicklung mit MATLAB für Embedded Controller SMT32F4-Discovery dr@szacher.de www.zacher-automation.de Beginn: 10.04.2015 Abgabe: __________ Das klassische
in „STM32F4-Discovery Board mit Matlab/Simulink“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
edm_adc_multiplex_stm32.c
* Created: 28.02.2014 * Author: Nicolas */ #include <stdio.h> #include "../../ioMapping.h" #ifdef STM32F10x #include "stm32f10x_adc.h" #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "stm32f10x_adc.h" #include "stm32f10x_dma.h" #include "misc.h" #elif defined(STM32F4xx) #error "only for STM32F10x implemented yet" #else #error "unknown MCU" #endif #define NCHANNEL 10 uint16_t ADC1ConvertedValues[NCHANNEL]; /* Alle GPIO-Ports, an denen benutzte ADC-Kanaele haengen, passend einstellen */
in „STM32: Suche Hilfe zu ADC“ · Mikrocontroller und Digitale Elektronik ·
-
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
adc_dma.c
#include "stm32f0xx_gpio.h" #include "stm32f0xx.h" #include "typedef.h" #include "init.h" #include "stm32f0xx_adc.h" #include "stm32f0xx_rcc.h" #include "stm32f0xx_misc.h" #include "stm32f0xx_dma.h" #include "stm32f0xx_tim.h
in „ATM32F030 + ADC + DMA“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
myfirst168.s
.syntax unified .cpu cortex-m4 .thumb .set LSE_fitted,0 @ GPIO register map is similiar to STM32F4 chips. @ -> register boundary address pp. 65 in DM00031020.pdf .equ BIT0, 0x00000001 .equ BIT1, 0x00000002 .equ BIT2, 0x00000004 .equ
in „STM32CubeIDE - kann man dem gdb server einen Schalter mitgeben?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
---- // Hardware : STM32F4 Discovery // Takt : 53,76 MHz // Sprache : ARM C // Datum : 08.12.2013 // Version : 1 // Autor : nicolas //---------------------------------------------------------------------- #include <stddef.h> #include <stdlib.h> //#include "stm32f4xx.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_tim.h" #include "misc.h" void initApplication(void) { SysTick_Config(SystemCoreClock/100); RCC_AHB1PeriphClockCmd(
in „Anfängerfrage STM32“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
// Hinweis : Diese zwei Files muessen auf 8MHz stehen // "cmsis_boot/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 ·
-
Datei
main.c
============== - this file must be inserted in a project containing the following files : o system_stm32f0xx.c, startup_stm32f072xb.s o stm32f0xx.h to get the register definitions o CMSIS files =============================================================================== ##### How to test this example
in „RS485 - viele Teilnehmer - hohe Geschwindigkeit“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32Tutorial.pdf
des Programms in das STM32F4 Discovery-Board. Der Aufruf erfolgt über das Kommandozeilentool ST-LINK direkt aus der EMBlocks IDE heraus. START: Schritt 1: Rechtsklick auf Projekt Properties… Schritt 2: Unter Build targets Generate Hex file Schritt 3: Tools Configure tools … Schritt 4: Add Schritt 5: folgende Daten eintragen: Name: STM32F4 ST LINK Executable: C:\Program Files\STMicroelectronics\STM32 ST-LINK Utility\ST-LINK Utility\ST-LINK_CLI.exe Parameters: -c SWD -P "${TARGET_OUTPUT_DIR
in „Neues STM32 Tutorial“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb_vcp.c
implenentation While it should be still compatible with the original one found at http://stefanfrings.de/stm32/STM32F103_usb_test.zip several changes are made to be more flexible. Tested on BluePill boards with STM and WCH controllers (F103XXX) Changes - put all cfg options at the beginning and create a config
in „STM32 USB Übertragungsproblem mit Code von S.F.“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Diagramm der Frequenzabweichung
2 STM32F434 MC01_PLL_Q Test3 25 MHz / 5192 / 20 / 1 = 48MHz 1 s 48 001 325.947 Hz 20m 33s 1255 pts FA-2 STM32F434 MC02_PLL_P Test1 25 MHz / 200 / 10 / 5 = 20MHz 1 s 25 000 511.809 Hz 54m 4s 3244 pts FA-2 STM32F434 MC02_HSE Test2 25 MHz 1 s 25 000 6
in „STM32H743 PLL“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
stm32_ino.txt
/// [1 to 16] uint8_t time_segment_2; /// [1 to 8] uint8_t resynchronization_jump_width; /// [1 to 4] (recommended value is 1) } CAN_bit_timing_config_t; #define CAN_STM32_ERROR_UNSUPPORTED_BIT_RATE 1000 #define CAN_STM32_ERROR_MSR_INAK_NOT_SET 1001 #define CAN_STM32_ERROR_MSR_INAK_NOT_CLEARED 1002
in „Arduino Blue Pill & CAN mit SN65HVD230“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Pinout.pdf
PC13 to PC15 in output mode is limited: - The speed should notexceed 2MHz witha maximum loadof 30 pF. - These GPIOs must not be usedas currentsources (e.g. to drive an LED). 2. This feature is available on STM32F030x6 and STM32F030x4 devices only. 3. This feature is available on STM32F030x8 devices only. 4. For STM32F030x4/6/8 devices only. 5. For STM32F030xC devices only. 6. On LQFP32 package, PB2 and PB8 should be treated as unconnected pins (even when they are not available on the package, they are
in „µC für n00bs“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f4xx.h" #include "system_stm32f4xx.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_tim.h" #include "misc.h" int main(void) { SystemInit(); // Initialize the GPIO / LEDs
in „[STM32F407VG, Discovery-board] Timer-interrupt verwirrt mich“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4x7_eth_bsp.h
/** ****************************************************************************** * @file stm32f4x7_eth_bsp.h * @author MCD Application Team * @version V1.0.0 * @date 31-October-2011 * @brief Header for stm32f4x7_eth_bsp.c file. ***************************************************************
in „STM32-E407 Ethernet / UDP“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f10x_it.c
**** */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x_it.h" /** @addtogroup STM32F10x_StdPeriph_Examples * @{ */ /** @addtogroup TIM_6Steps * @{ */ /* Private typedef -----------------------------------------------------------*/ /* Private define
in „STM32F1 Brushless Motor Steuerung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Code.txt
/* * * STM32F030F4P6 Uart Example using Interrupt Read & Write * */ // Includes #include "stm32f0xx.h" #include "stm32f0xx_rcc.h" #include "stm32f0xx_gpio.h" #include "stm32f0xx_misc.h" #include "stm32f0xx_usart.h
in „STM32F030F4 HSI Clock mit PLL“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.h
seiner Nutzung. * * Some parts of the touch implementation are inspired of https://github.com/pyrohaz/STM32F0-SoftTouch * The code was changed to work also without an external 1M resitor at an further pin. * * History * 10.05.2019 markus Start of work * 23.05.2019 markus first working release */ #ifndef __MAIN #define __MAIN // Includes #include "stm32f0xx.h" #include "stm32f0xx_rcc.h" #include "stm32f0xx_gpio.h" #include "stm32f0xx_misc.h" #include "stm32f0xx_usart.h" #include "stm32f0xx_adc.h" #include <string.h> #include <stdlib.h> // Defines
in „2 Kanal Touch Button Haussteuerungserweiterung“ · Projekte & Code ·
-
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
-
Datei
irsnd.c
56000 / 2 / Pre_Scaler / PIC_Scaler) - 1) # define IRSND_FREQ_455_KHZ (IRSND_FREQ_TYPE) ((F_CPU / 455000 / 2 / Pre_Scaler / PIC_Scaler) - 1) #elif defined (ARM_STM32) // STM32 # define IRSND_FREQ_TYPE uint32_t # define IRSND_FREQ_30_KHZ (IRSND_FREQ_TYPE) (30000) # define IRSND_FREQ_32_KHZ (
in „IR Fernbedienung mit IRSND“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
adc_dma.c
#include "string.h" #include "stm32f0xx_adc.h" #include "stm32f0xx_dma.h" #include "stm32f0xx_gpio.h" #include "stm32f0xx_rcc.h" #include "stm32f0xx_misc.h" #include "stm32f0xx_tim.h" volatile uint16_t ADCReadBuffer[] = { 0xAAAA, 0xAAAA
in „ATM32F030 + ADC + DMA“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4x7_eth_bsp.h
/** ****************************************************************************** * @file stm32f4x7_eth_bsp.h * @author MCD Application Team * @version V1.0.0 * @date 31-October-2011 * @brief Header for stm32f4x7_eth_bsp.c file. ***************************************************************
in „Olimex STM32E407, FreeRTOS und lwip“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ArmAssemblerTutorial.pdf
online resources. Several development boards with these controllers are available, for example: Nucleo-F103, “Blue Pill” (search for “stm32f103c8t6” on AliExpress, Ebay or Amazon), Olimexino-STM32, STM32-P103, STM32-H103, STM3210E-EVAL. Processor type & documentation First, the microcontroller manufacturer
in „ARM-Assembler-Tutorial“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f10x_vector.c
/******************** (C) COPYRIGHT 2007 STMicroelectronics ******************** * File Name : stm32f10x_vector.c * Author : MCD Application Team * Version : V1.0 * Date : 10/08/2007 * Description : This file contains the vector table for STM32F10x. * After Reset the Cortex-M3 processor is in Thread
in „stm32 lib compiler error“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb.c
======================================== // For devices with 2x16 bits/word access schema // (e.g. STM32L0x2, STM32L0x3, STM32F04x, STM32F072, STM32F078, STM32F303xD, STM32F303xE) #define UMEM_SHIFT 0 #define UMEM_FAKEWIDTH uint16_t // For devices with 1x16 bits/word access schema // (e.g. STM32F103, STM32F302, STM32F303xB, STM32F303xBxC) // #define UMEM_SHIFT 1 // #define UMEM_FAKEWIDTH uint32_t // The name of the IRQ handler must match startup_stm32.s #define NAME_OF_USB_IRQ_HANDLER USB_LP_CAN_RX0
in „USB HID Device mit STM32F042“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
picomon_v3.pdf
und linkt alle benötigten Programmteile zu einer flashbaren Binärdatei ◦ Hinweis: Im Makefile für STM32F0xx kann/muß der Controller korrekt gewählt sein, um ggf. den erhöhten RAM-Bedarf des Programms bedienen zu können, für LSCRIPT steht zur Verfügung: stm32f030x4.ld , stm32f030x6.ld , stm32f030x8.ld , stm32f070x6.ld , stm32f042x6.ld • picomon.c ◦ Quellcode und Main-Programm der Firmware • spi_tft.c ◦ Quellcode zur Ansteuerung der internen Hardware-SPI, sendet Daten vom Controller zum Display • spi_tft.h
in „PicoMon für CH32V003 oder STM32F0xx“ · Projekte & Code ·
-
PDF
Schaltplan.pdf
MIC5504-3V3 MIC5504-3V3 MIC5504-3V3 IC15 IC6 IC1 5 5 BEC_5V 1 IN OUT 5 3V3_SD/3.3C + 1 IN OUT 5 3V3_STM/2.1C + 1 IN OUT 5 3V3/3.1B IC13 3 EN 3 EN 3 EN 2µ2/50V D 2µ2/50V D 2µ2/50V D C11 ST662ABD-TR 2 4 G C35 4 G C33 4 G C210 V_SUPPLY 1 8 N + C37 BYP C34 BYP C1 BYP 220nF/50V C1- SHDN 7 G 2 10µ/50V 2 10µ
in „SD Karte/SPI Problem ab 200A -> Störungen?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
NF-Generator-407.c
/* STM32F407 www.mino-elektronik.de 2016-11-08 */ #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <stm32f4xx.h> #include <stm32f4xx_gpio.h> #include <stm32f4xx_rcc.h> // LCD-Routinen in
in „Frequenz Erzeugung mit avr“ · 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
main.c
main.h" #include "io.h" #include "hw_config.h" #include "sw_config.h" #include "hw_config.h" #include "stm32f4xx_conf.h" #include "usart.h" #if defined( STM32F10x ) || defined( STM32F4XX ) /* Zielplattform (Debug, Release, Modultests) */ #define MAINFUN int main(void) #else #error "unknown platform" #endif
in „STM32F446: USART DMA-Transfer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
---------------------*/ #define USE_STDPERIPH_DRIVER #include "main.h" #include <math.h> #include <stm32f4xx.h> #include <misc.h> // I recommend you have a look at these in the ST firmware folder #include <stm32f4xx_spi.h> // under Libraries/STM32F4xx_StdPeriph_Driver/inc and src #include <stm32f4xx_rcc.h> #include <stdint.h> #include "stm32f4xx_conf.h" #include "usart.h" #include "dprintf.h" #include "common.h" //#include "tabellen.h" USART_TypeDef* USARTx = USART1; volatile uint8_t stopsampling=0; volatile uint32_t timercnt=0; volatile
in „Hook up a MEMS microphone to the I2S of a Cortex M4“ · Projekte & Code ·
-
Datei
build.xml
dir="."> <include name="**/*.c"/> <include name="**/*.cpp"/> <include name="**/*.s"/> <exclude name="stm32f4xx_it.c"/> <exclude name="stm32f4xx_it.h"/> <exclude name="CoOS/portable/Keil/port.c"/> <exclude name="CoOS/Other/OsConfig.h"/> </fileset> <project outfile="${project.name}.elf" overwrite="true" type="xcode"/> <!-- defines --> <defineset> <define name="__FPU_USED"/> <define name="STM32F4XX"/> <define name="USE_STDPERIPH_DRIVER"/> <define name="__ASSEMBLY__"/> <define name="STM32F407VG"/> </defineset> <!-- include compile path --> <includepath path="."/> <includepath path="cmsis"
in „STM32F4 CoOS“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
_ATT_12740.pdf
, which sends CAN messages and receives CAN messages Hardware setup CAN bus PC terminal analyzer STM32L476G-EVAL STM32CubeMX Selecting CAN interface and clock • Create project in STM32CubeMX • Menu > File > New Project • Select STM32L4 -> STM32L4x6 -> LQFP144 package -> STM32L476ZGTx • Select CAN:
in „STM32 CAN Botschaft empfangen“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
MiniF4x1Cx_V31.pdf
- GND 10K NC P4 P30 P3 BAT54C STM32F4X1CXU6 P0 SW33 1 3 PB2 PIW301 PSW303 3.3V LO1 PIW302 PSW3 40 PL12 PIL11 3.3V NRST 3*4 按键 GND 1KΩ 100Mhz RTC 电源 CO3 PC301 PIC02 BOOT 设置 RTC circuit BOOT Settings 0.1uF 3.3V VREF+
in „was kommt nach dem Bluepill-Board?“ · Mikrocontroller und Digitale Elektronik ·
-
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 ·
-
Datei
myfirst168.s
.syntax unified .cpu cortex-m4 .thumb .set LSE_fitted,0 @ GPIO register map is similiar to STM32F4 chips. @ -> register boundary address pp. 65 in DM00031020.pdf .equ BIT0, 0x00000001 .equ BIT1, 0x00000002 .equ BIT2, 0x00000004 .equ
in „STM32CubeIDE - kann man dem gdb server einen Schalter mitgeben?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
myfirst168.s
.syntax unified .cpu cortex-m4 .thumb .set LSE_fitted,0 @ GPIO register map is similiar to STM32F4 chips. @ -> register boundary address pp. 65 in DM00031020.pdf .equ BIT0, 0x00000001 .equ BIT1, 0x00000002 .equ BIT2, 0x00000004 .equ
in „Break auf 0xfffffffe in STM32CubeIDE“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Bauteile.pdf
26V Adj 1A 926-LM2941LD/NOPB 2,66 € TPS79030DBVT LDO 10V 3,0V 50mA 7 595-TPS79030DBVT 1,97 € MSP430F2252TRHAT MCU 1 595-MSP430F2252TRHAT ATMEGA328P-AU Microkontroller TQFP-32 2 556-ATMEGA328P-AU 2,78 € STM32F051R8T6 Mikrocontroller LQFP-64 1 511-STM32F051R8T6 5,64 € GD32F405RGT6 Mikrocontroller LQFP-64 5 LCSC 7,96 € STM32F405RGT6 Mikrocontroller LQFP-64 5 511-STM32F405RGT6 15,84 € TK4R4P06PL,RQ Mosfet N-Ch 60V 3.4mR DPAK 7 757-TK4R4P06PLRQ 1,51 € IRFR8314 Mosfet N-Ch 30V 2.2mR DPAK 4 942-IRFR8314TRPBF 1,93 € ADG884BRMZ
in „[V] diverse Bauteile“ · Markt ·
-
Datei
spi2_slave.h
----------- // Includes //-------------------------------------------------------------- #include "stm32f4xx.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_spi.h" #include "misc.h" //-------------------------------------------------------------- // Defines //-----------
in „RaspberryPI <- SPI -> STM32F4“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32MP151A_Block_Diagram.pdf
2 2 (2 x HS Host) F T H GPIOH 16b 16 M PLLUSB C I T MDMA 9 GPIOI 16b 16 O I F 32 Channels 0 31 24b L(LCD) F X ( GPIOJ 16b A I STM i 16 8 8b GPIOZ T F t a GPIOK 8b 8 17 16b Trace port 8I async m F u TIM2 32b 5 3 I2C4 / SMBUS
in „STM32MP1 von ST“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ch9121_doc2.pdf
Update configuration parameters to EEPROM, execute configurat ion, reset 9121, leave configuration mode STM32 The sample demo we provide is based on STM32F103RBT6, and the connection method provided is also the pin of the corresponding STM32F103RBT6. If there is a need to transplant the demo, please connect according to the actual pin. Hardware Connection STM32F103ZET connection pin correspondence ETH STM32 5V 5V GND GND RXD1 PC10 TXD1 PC11 CFG0 PC12 RST1 PD2 Take our STM32F103RBT6 as an example, the connection is as follows: 2-CH UART TO ETH-STM32.png (
in „Serieller Tunnel durch IP-Netz?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
FK723M1-ZGT6.zh-CN.en.pdf
- PF14 C6 1K PF14 LED2 PC0 26 PC0 PF15 55 PF15 SCCB_SDA - PF15 STM32H723ZE/G 0.1uF BAT54C_KL3 PC1 27 PC1 PC2_C 28 56 PG0 PC3_C 29 PC2_C PG0 57 PG1 GND PC4 44 PC3_C PG1 87 PG2 PC5 45 PC4 PG2 88 PG3 PC5 PG3 DCMI_D0 - PC6 PC6 96 PC6 PG4 89 PG4 DCMI_D1 - PC7 PC7 97 PC7
in „Neues Blackboard mit STM32H723“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "STM32F10x.h" #include <stm32f10x_rcc.h> #include <stm32f10x_gpio.h> #include <misc.h> #define zucSTM 1 #define zuc_STM 1 #define xF_DELAY 6536//72MHZ #define F_IR 245//82// #define use_spi_tft 0 #define
in „stm32f103 mit usb-stick“ · 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.c
#include "stm32f0xx.h" #include "stm32f0xx_gpio.h" #include "stm32f0xx_rcc.h" #include "stm32f0xx_tim.h" #include "stm32f0xx_misc.h" #include <stdlib.h> #include <stddef.h> void init_Timer(void); void init_Application
in „stm32 SysTickFunction wird nie ausgeführt“ · Mikrocontroller und Digitale Elektronik ·