-
PDF
TestArmTurtorialDeu.pdf
beliebt. Es sind mehrere Entwicklungsboards mit diesen Controllern verfügbar, zum Beispiel: Nucleo-F103, „/ users / hudakz / code / STM32F103C8T6_Hello / Blue Pill (suchen Sie nach „stm32f103c8t6“ auf AliExpress, Ebay oder Amazon), Quellhardware Olimexino-STM32, STM32-P103, / STM32-H103 / STM32-H103
in „ARM-Assembler-Tutorial“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
diskio.c
!= 0xFF) return 0; xmit_spi(token); /* transmit data token */ if (token != 0xFD) { /* Is data token */ #ifdef STM32_SD_USE_DMA stm32_dma_transfer( FALSE, buff, 512 ); #else wc = 0; do { /* transmit the 512
in „Schreiben auf SD-Karte über SPI funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
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
codecIntegerSineWave.ino
// sine wave generator using the 16 bit codec of the // STM32F4 Discovery // // you need to copy the library from here // https://github.com/mubase/STM32F4-Arduino-core // to ... \arduino-1.6.9\hardware\Arduino_STM32 // after you installed the STM32 support
in „STM32F4 Discovery Arduino“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
myfirst.s
spectrum clock generation register .set RCC_PLLI2SCFGR, 0x84 @ RCC I2S PLL configuration register @ USART3 on STM32F4 chips: @ USART3 on STM32F1/STM32F4 chips: pp. 1018 in RM0090 (dm00031020-stm*.pdf) .equ USART3_BASE , 0x40004800 .equ USART3_SR , USART3_BASE
in „STM32CubeIDE - kann man dem gdb server einen Schalter mitgeben?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
myfirst168.s
spectrum clock generation register .set RCC_PLLI2SCFGR, 0x84 @ RCC I2S PLL configuration register @ USART3 on STM32F4 chips: @ USART3 on STM32F1/STM32F4 chips: pp. 1018 in RM0090 (dm00031020-stm*.pdf) .equ USART3_BASE , 0x40004800 .equ USART3_SR , USART3_BASE
in „STM32CubeIDE - kann man dem gdb server einen Schalter mitgeben?“ · 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 ·
-
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
linkfile.txt
Linker Script /*SEARCH_DIR("C:\Programme\Hitex\GnuToolPackageCortex\bin\..\lib\gcc\arm-hitex-elf\4.4.0\thumb2\soft" ) INPUT ( .\objects\cpuinit.o .\objects\flop.o .\objects\main.o .\objects\misc.o .\objects\startup_stm32f10x_ld.o .\objects\stm32f10x_adc.o .\objects\stm32f10x_dma.o .\objects\stm32f10x_flash.o .\objects\stm32f10x_gpio.o .\objects\stm32f10x_it.o .\objects\stm32f10x_rcc.o .\objects\stm32f10x_tim.o ) /* provide kann vom Objektfile ueberschrieben werden */ __Stack_Size = 1024 ; PROVIDE ( _Stack_Size = __Stack_Size
in „GCC Linker File“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ub_i2c1.h
----------- // Includes //-------------------------------------------------------------- #include "stm32f10x.h" #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "stm32f10x_i2c.h" //-------------------------------------------------------------- // MultiByte defines //-------------------
in „STM32F105 bei I2C Read ein Byte zu viel“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_Init.c
define _NVIC //#define _ADC //#define _GPIO //#define _EXTI #include "stm32f10x_lib.h" // STM32F10x Library Definitions #include "STM32_Reg.h" // missing bit definitions #define _SysTick //#include "..\_stdlibrary_V2_03_patch\inc\stm32f10x_systick.h" //#include "stm32f10x.h" //#include "stm32f10x_gpio.h" //#include "stm32f10x_nvic.h" // #include "stm32f10x_rcc.h" // #include "stm32f10x_tim.h" // #include "stm32f10x_exti.h" #endif //-------- <<< Use Configuration Wizard in Context Menu
in „Frage zu ST-Mikrocontrollern mit eMios“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Scratch_MegaSample.c
#include "stm32f4xx.h" #include "system_stm32f4xx.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "misc.h" #include "stm32f4xx_exti.h" #include "stm32f4xx_syscfg.h" #include "stm32f4xx_spi.h" #include "stm32f4xx_usart.h" #include "stm32f4xx_adc.h" #include "stm32f4xx_dma.h" #include "Scratch_MegaSample.h" void Init_USART2(){ // Enabling the Clock for the USART1 RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2
in „STM32F4 ADC/DMA Phänomene“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
-------------------------------------------- // File : main.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 : CMSIS_BOOT, M4_CMSIS_CORE // Funktion : Demo der IRSND-Library // Hinweis : Diese zwei Files muessen auf 8MHz stehen // "cmsis_boot/stm32f4xx.h" // "cmsis_boot/system_stm32f4xx.c" //-------------------------------------------------------------- #include "stm32f0xx.h" #include "stm32_ub_irsnd.h" #include "stm32f0308_discovery.h" #include
in „IRSND auf STM32F0“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ub_i2c1.h
----------- // Includes //-------------------------------------------------------------- #include "stm32f10x.h" #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "stm32f10x_i2c.h" //-------------------------------------------------------------- // MultiByte defines //-------------------
in „STM32F105 bei I2C Read ein Byte zu viel“ · Mikrocontroller und Digitale Elektronik ·
-
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
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 #include "./edm_variables.h" #include "./edm_settings.h" #define NCHANNEL 10 uint16_t ADC1ConvertedValues[NCHANNEL]; /* Alle GPIO-Ports, an denen
in „STM32: Suche Hilfe zu ADC“ · 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 #include "./edm_variables.h" #include "./edm_settings.h" #define NCHANNEL 10 uint16_t ADC1ConvertedValues[NCHANNEL]; /* Alle GPIO-Ports, an denen
in „STM32: Suche Hilfe zu ADC“ · Mikrocontroller und Digitale Elektronik ·
-
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 ·
-
PDF
en.DM00108129.pdf
, delivered per series (such as STM32CubeF4 for STM32F4 series) – The STM32Cube HAL, an STM32 abstraction layer embedded software, ensuring maximized portability across STM32 portfolio – A consistent set of middleware components such
in „STM32F4 USB CLASS CDC (Virtueller Com Port)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
linker_Ausgabe.txt
BlinkingLEDCPP **** make all ..linking arm-none-eabi-g++ -v -o elf/main.elf obj/main.o obj/system_stm32f10x.o obj/startup_stm32f10x.o obj/stm32f10x_rcc.o obj/stm32f10x_gpio.o obj/newlib_stubs.o obj/core_cm3.o obj/mini_cpp.o -TSTM32F10x_512k_64.ld -LC:/Entwicklung/CodeSourcery/arm-none-eabi/lib/thumb2
in „Linker Problem wegen _sbrk() trotz newlib_stubs.c/mini_cpp.cpp“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
code.txt
#include "stm32f10x.h" #include <stm32f10x_gpio.h> #include <stm32f10x_rcc.h> #include <typedef.h> #include <init.h> #include "stm32f10x_adc.h" #include "stm32f10x_dac.h" #include "stm32f10x_usart.h" #include "stm32f10x_dma.h
in „USART Remapping“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
code.txt
#include "stm32f10x.h" #include <stm32f10x_gpio.h> #include <stm32f10x_rcc.h> #include <typedef.h> #include <init.h> #include "stm32f10x_adc.h" #include "stm32f10x_dac.h" #include "stm32f10x_usart.h" #include "stm32f10x_dma.h
in „USART Remapping“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irmp-libopencm3.diff
diff --git a/irmp.c b/irmp.c index 150d69f..f95410b 100644 --- a/irmp.c +++ b/irmp.c @@ -2189,6 +2189,15 @@ irmp_init (void) # endif GPIO_Init(IRMP_PORT, &GPIO_InitStructure); +#elif defined (ARM_OPENCM3) // STM32 with libopencm3 + + /* GPIOx
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
main.c
#include "stm32f0xx.h" #include "stm32f0xx_gpio.h" // GPIO Library für die Peripherie #include "stm32f0xx_rcc.h" // RCC Library für den Takt, der widerrum die Peripherie versorgt #include "stm32f0xx_spi.h" // SPI Library für die SPI-Schnittstelle #include "stm32_led.h" // Library für die Kontroll-LED #include "stm32_user_button.h" // Library für den User-Button #include "stm32_spi_eigen.h" //typedef enum //{ // Cntrl = 00, // Freq0 = 01, // Freq1 = 10, //
in „AD9833 mittels STM32F072 per SPI ansteuern“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
edm_adc_multiplex_stm32.c
* Created: 28.02.2014 * Author: Nicolas */ #include <stdint.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 #include "./edm_variables.h" #include "./edm_settings.h" #define NCHANNEL 10 uint16_t ADC1ConvertedValues[NCHANNEL] = \ {0xAAAA,0xAAAA,0xAAAA
in „STM32: Suche Hilfe zu ADC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_stm32f10x.h
************************************************* */ /** @addtogroup CMSIS * @{ */ /** @addtogroup stm32f10x_system * @{ */ /** * @brief Define to prevent recursive inclusion */ #ifndef __SYSTEM_STM32F10X_H #define __SYSTEM_STM32F10X_H #ifdef __cplusplus extern "C" { #endif /** @addtogroup STM32F10x_System_Includes * @{ */ /** * @} */ /** @addtogroup STM32F10x_System_Exported_types * @{ */ extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ /** * @} */ /** @addtogroup STM32F10x_System_Exported_Constants * @{ */ /** * @} */ /
in „COIDE 2.7.0 und STMF103C8T6 (china board), startprobleme“ · 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 ·
-
Datei
main.c
, 0x70, 0x02, 0x71, 0x94, 0x73, 0xc1, 0x3d, 0x34, 0x5a, 0x57, 0x12, 0x00, 0x11, 0x00, 0x17, 0x11, 0x18, 0x75, 0x19, 0x01, 0x1a, 0x97, 0x32, 0x36, 0x03, 0x0f, 0x37, 0x40, 0x4f, 0xbb, 0x50, 0x9c, 0x5a, 0x57
in „STM3220G-EVAL + Kamera OV2460“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STMxx-Discovery-Versaloon-How2.pdf
Document Revision 1.0 / 31-12-2010 Hi there I have had a STM32VL-Discoveryboard for some time , but hasn't used it as you needed Windows in order to use the onboard Jtag/Programmer. As i mainly use Linux (Ubuntu 10.04 LTS
in „Use your STMxx-Discoveryboard as JTAG (SWD)“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
UART_Test.pdf
Configuration Report 1. Description 1.1. Project Project Name UART_Test Board Name custom Generated with: STM32CubeMX 6.2.1 Date 08/02/2021 1.2. MCU MCU Series STM32F1 MCU Line STM32F103 MCU name STM32F103RBTx MCU Package LQFP64 MCU Pin number 64 1.3. Core(s) information Core(s) Arm Cortex-M3 Page 1 UART_Test
in „STM32F1 HAL UART Senden nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
code.txt
#include "stm32f10x.h" #include <stm32f10x_gpio.h> #include <stm32f10x_rcc.h> #include <typedef.h> #include <init.h> #include "stm32f10x_adc.h" #include "stm32f10x_dac.h" #include "stm32f10x_usart.h" #include "stm32f10x_dma.h
in „STM32 Tutorial“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
code.c
#include "stm32f10x.h" #include <stm32f10x_gpio.h> #include <stm32f10x_rcc.h> #include <typedef.h> #include <init.h> #include "stm32f10x_adc.h" #include "stm32f10x_dac.h" #include "stm32f10x_usart.h" #include "stm32f10x_dma.h
in „STM32 Tutorial“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
code.txt
#include "stm32f10x.h" #include <stm32f10x_gpio.h> #include <stm32f10x_rcc.h> #include <typedef.h> #include <init.h> #include "stm32f10x_adc.h" #include "stm32f10x_dac.h" #include "stm32f10x_usart.h" #include "stm32f10x_dma.h
in „USART Remapping“ · 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, 0xAAAA }; volatile uint32_t Milliseconds = 0, Seconds = 0; uint16_t u16AnalogIn[3]; uint32_t u32Counter; void Init_ADC(void) { DMA_InitTypeDef DMA_InitStructure; GPIO_InitTypeDef GPIO_InitStructure; ADC_InitTypeDef
in „ATM32F030 + ADC + DMA“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32H7-Disco_full.PDF
PB14PI954 PB15_USB-HS_D+ PG14 P160 PG15_SD AM_CAS\ C115 PB15PI505 PG15 PU06 IC00043 IC00043 PI51P10 B STM32H743IIT6 STM32H743IIT6 B 50 V 4.7 pF COTA1 U5C PI502 PC0_LTDC_R5 U5H PIU09 HF+ PIT1 XTAL1PXL0 PC0 33 PC1_Joy_ ire PH0/HF+ 30 HF- 3 XTAL Gnd 2 PC1PI343 PC2_Joy_ ire2 PH1/HF-I430 PH2_LTDC_ 0 PIT1 XTAL
in „STM32H7-Disco erster Test“ · 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
in „STM32F746G-DISCO-OSCI mit WAV-Recording auf SD-Karte“ · Projekte & Code ·
-
Datei
edm_adc_multiplex_stm32.c
* Created: 28.02.2014 * Author: Nicolas */ #include <stdint.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 #include "./edm_variables.h" #include "./edm_settings.h" #define NCHANNEL 10 uint16_t ADC1ConvertedValues[NCHANNEL+1] = \ {0xAAAA,0xAAAA,0xAAAA
in „STM32 - ADC-DMA1-IRQ-Handler macht Unsinn“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ino.txt
((timings.baud_rate_prescaler - 1U) & 1023U); // Configure Filters to default values CAN1->FMR |= 0x1UL; // Set to filter initialization mode CAN1->FMR &= 0xFFFFC0FF; // Clear CAN2 start bank // bxCAN has 28 filters. // These filters are shared by both CAN1 and CAN2. // STM32F103 has only CAN1, so
in „Arduino Blue Pill & CAN mit SN65HVD230“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#define STM32F10X_MD #include "stm32f10x.h" #include "misc.h" #include "stm32f10x_rcc.h" #include "stm32f10x_exti.h" #include "stm32f10x_gpio.h" #include "stm32f10x_flash.h" void RCC_Configuration(); void NVIC_Configuration
in „STM32 Interrupt Rücksprung ins Nirvana“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
graphik.h
ifndef GRAPHIK_H_INCLUDED #define GRAPHIK_H_INCLUDED // Special Libs #include "defines.h" #include "tm_stm32f4_ili9341.h" #include "tm_stm32f4_delay.h" #include "tm_stm32f4_rng.h" #include "tm_stm32f4_rtc.h" #include "tm_stm32f4_bmp180.h" #include "tm_stm32f4_general.h" /* LCD settings */ #define ILI9341
in „Zeigt her eure Kunstwerke (2017-2019)“ · Projekte & Code ·
-
Datei
Blinky.txt
******************** /* Hinweis zum Clock fuer 8MHz Quarz, damit er auf 168MHz läuft (betrifft das stm32F4Discovery): in der system_stm32f4xx.c muss eingetragen sein: PLL_M = 8 in der stm32f4xx.h muss eingetragen sein: HSE_VALUE = 8000000 */ // Includes #include <stdio.h> #include <stdlib.h> #include "stm32f4xx.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" // Defines // LEDs #define LD_3_AUS GPIO_ResetBits(GPIOD,GPIO_Pin_13) // orange LED #define LD_3_EIN GPIO_SetBits(GPIOD,GPIO_Pin_13) static
in „Delay für STM32F4Discovery“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Fader.h
FADER_H #define __FADER_H //****************** Low Level Includes ***********************// #include "stm32f0xx.h" #include "stm32f0xx_rcc.h" #include "stm32f0xx_gpio.h" #include "stm32f0xx_adc.h" #include "stm32f0xx_dma.h" #include "stm32f0xx_tim.h" //***************************************************
in „STM32F0 Multi Channel ADC mit DMA problem“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM_Mouser.pdf
+49 (0)89 520 462 110 Standort wählen Alle Artikelnummer / Schlagwort 0 Produktvergleich Produktinfo. Bild: Alle markieren: Mouser-Teilenr.: 511-STM32F103C6T6A 511-STM32F103C8T6 Herst.-Teilenr.: STM32F103C6T6A
in „STM32 Win10 COM-Treiber“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
disco.txt
PC8.Signal=SDIO_D0 PC9.Mode=SD_4_bits_Wide_bus PC9.Signal=SDIO_D1 PCC.Checker=false PCC.Line=STM32F429/439 PCC.MCU=STM32F429Z(E-G-I)Tx PCC.PartNumber=STM32F429ZITx PCC.Seq0=0 PCC.Series=STM32F4 PCC.Temperature=25 PCC.Vdd
in „FMC auf STM32F4 konfigurieren?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4xx_rng.h
/** ****************************************************************************** * @file stm32f4xx_rng.h * @author MCD Application Team * @version V1.3.0 * @date 08-November-2013 * @brief This file contains all the functions prototypes for the Random * Number Generator(RNG) firmware library
in „Random Number Generator läuft nicht richtig,stm32f429“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
usr_scm_stm32com-a2-1.pdf
PC14 PC14 8 PC14 TCK 76 PA14 PC15 9 PC15 TDI 77 PA15 Q301 V V 32.7kHzQ/S STM32F107VCT6 1 / 3 3 STM32F107VCT6 PC15 A 3 3 0 3 6 6 + / 6 6 0 6 0 / 0 / 4 S 0 / 0 / 0 S 0 / R301 3 2 3 2 3 U 3 0 3 0 3 U 3 0 C 2 C 2 C302 C303 C 4 C 1 C 1 C 1 C 1 0R0/0603 A A A A 12p/0603
in „STM32-comStick USB-Bootloader“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
techb_GraficLCD_de_en.pdf
Schnittstellendaten Interface Data LCD Belegung (4 Bit Modus) / LCD Configuration (4 Bit mode) Steckerleiste / STM32 F4 Discovery Male pin header PLUS LCD Beschreibung / Description 1 PIN E8 LCD PIN 6 DB0 = Datenbit 0 /data bit 0 2 PIN E9 LCD PIN 7 DB1 = Datenbit 1 /data bit 1 3 PIN E10 LCD PIN 8 DB2 = Datenbit
in „LCD Ansteuerung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main_stm32f429.c
#include "stm32f4xx.h" #include "stm32f4xx_conf.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_tim.h" #include "stm32f4xx_gpio.h" #define ARM_MATH_CM4 #include "arm_math.h" unsigned long ulCapturedTimerValue1
in „XMC4500 vs stm32f429.warum gibt es Unterschiede in der Berechnungsdauer?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Files.txt
,PeriphDataAlignment,MemDataAlignment,Mode,Priority File.Version=6 KeepUserPlacement=false Mcu.CPN=STM32F302R8T6 Mcu.Family=STM32F3 Mcu.IP0=DMA Mcu.IP1=NVIC Mcu.IP2=RCC Mcu.IP3=SPI2 Mcu.IP4=SYS Mcu.IPNb=5 Mcu.Name=STM32F302R(6-8)Tx Mcu.Package=LQFP64 Mcu.Pin0=PF0-OSC_IN Mcu.Pin1=PF1-OSC_OUT Mcu.Pin2=
in „Probleme das Ili9341 Board zum laufen zu bekommen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test.c
(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(); } else { tempRes = f_read(&MyFile, rtext, sizeof(rtext), (UINT*)&bytesread); if((bytesread == 0) || (tempRes != FR_OK)) { /* 'STM32.TXT' file Read or EOF Error */ Error_Handler(); } else { f_close(&MyFile); if((bytesread
in „STM32F7 FatFS mit µSD“ · Mikrocontroller und Digitale Elektronik ·