-
PDF
en.x-nucleo-iks01a2_quick_start_guide.pdf
for NUCLEO-F401RE or NUCLEO-L053R8 or NUCLEO-L152RE or NUCLEO-L476RG \STM32CubeExpansion_MEMS1_V3.0.0\Projects\Multi\Examples\IKS01A2\DataLog\Binary\STM32F401RE-Nucleo \STM32CubeExpansion_MEMS1_V3.0.0\Projects\Multi\Examples\IKS01A2\DataLog\Binary\STM32L053R8-Nucleo \STM32CubeExpansion_MEMS1
in „LSM6DSL Gyro+Accelerometer, Gyro gibt keine Werte aus.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
adc_simple_stm32f4xx.c
"adc_simple.h" #include <stdio.h> #include <stdlib.h> #include "assert.h" #include "io.h" // fuer initGpioClock //#include "resources.h" #if defined(STM32F4XX) #include "stm32f4xx_adc.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" /* Hilfsfunktion: Kalibrierung vornehmen */ //TODO: Relikt von STM32F10x - ueberpruefen, inwieweit das auf die F4xxx auch zutrifft static void adc_calib(ADC_TypeDef *ADCx) { // ADC_Cmd(
in „Initialisierung ADC STM32F446 - gelöst“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
platformio.ini
.platform} extends = common_stm32f1 board = genericSTM32F103RC extra_scripts = ${common.extra_scripts} buildroot/share/PlatformIO/scripts/mks_robin_lite3.py # # JGAurora A5S A1 (STM32F103ZET6) # [env:jgaurora_a5s_a1] platform = ${
in „Ender3 Z-Achse fährt mit Marlin nur nach oben“ · Mechanik, Gehäuse, Werkzeug ·
-
Datei
main.c
(); } #if defined(STM32F030x6) || defined(STM32F030x8) || \ defined(STM32F051x8) || defined(STM32F058xx) || defined(STM32F070xB) || \ defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || \ defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F030xC) if ((DISP_HandleStruct->D4.Port == GPIOD) || (DISP_HandleStruct->D5.Port == GPIOD) || (DISP_HandleStruct->D6.Port == GPIOD) || (DISP_HandleStruct->D7.Port == GPIOD)
in „HD44780 Ansteuerung mit HAL und stm32f040f4“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2c_simple_stm32.c
Variante von I2C-Routinen // als Übung zur Inbetriebnahme // angelehnt an: http://eliaselectronics.com/stm32f4-tutorials/stm32f4-i2c-master-tutorial/ // // 22.12.13 Nicolas #ifdef STM32F10x #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "stm32f10x_i2c.h" #elif STM32F4XX #define STM32F4xx #include "stm32f4xx_gpio.h" #warning not implemnted and tested for STM32F4xx #else #error "unknown MCU" #endif #include <stdio.h> // Nur zum testen #include "misc.h" #include "i2c_simple.h" static uint8_t i2c_status
in „STM32 I2C mit EEPROM - funktioniert nur zuverlässig mit Bus-Sniffer“ · 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
stm32f4xx_it.c
**** */ /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal.h" #include "stm32f4xx.h" #include "stm32f4xx_it.h" /* USER CODE BEGIN 0 */ /* USER CODE END 0 */ /* External variables --------------------------------------------------------*/ extern DMA_HandleTypeDef
in „STM32F4 Timer Interrupt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tools.c
*************** */ /* -------------- Standard Include Files ----------------- */ #include <stdbool.h> #include <stdint.h> /* --------------- Special Include Files / Librarys ------ */ #include "tm_stm32f4_rtc.h" #include "tm_stm32f4_disco.h" #include "tm_stm32f4_nrf24l01_cj.h" #include "tm_stm32f4_rtc.h" #include "tm_stm32f4_bmp180.h" #include "tm_stm32f4_delay.h" /* -------------- Projekt Include Files ---------------- */ #include "tools.h" #include "config.h" #include "eeprom.h" /* -------------- Typen Deklarationen
in „Organisation der Header und Includes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
spi2_slave.h
//-------------------------------------------------------------- // File : stm32_ub_spi2_slave.h //-------------------------------------------------------------- //-------------------------------------------------------------- #ifndef __SPI2_SLAVE_H #define __SPI2_SLAVE_H //--
in „RaspberryPI <- SPI -> STM32F4“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
adc_simple_stm32f4xx.c
"adc_simple.h" #include <stdio.h> #include <stdlib.h> #include "assert.h" #include "io.h" // fuer initGpioClock #if defined(STM32F4XX) // Hardwarespezifische Funktionen #include "stm32f4xx_adc.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" /* Hilfsfunktion: Kalibrierung vornehmen */ static void adc_calib(ADC_TypeDef *ADCx) { (void) ADCx; // Die STM32F4xx haben/brauchen dieses Feature nicht. } typedef struct { GPIO_TypeDef
in „Initialisierung ADC STM32F446 - gelöst“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4_discovery_audio_codec.c
========== User NOTES 1. How To use this driver: -------------------------- - This driver supports STM32F4xx devices on STM32F4-Discovery Kit. - Configure the options in file stm32f4_discovery_audio_codec.h in the section CONFIGURATION. Refer to the sections 2 and 3 to have more details on the possible
in „STM32F4 Discovery Audio DAC CS43L22“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
zxkeyboard.diff
zxKeyboard.c (nonexistent) +++ zxkeyboard/zxKeyboard.c (working copy) @@ -0,0 +1,199 @@ + +#include "stm32f4xx_gpio.h" +#include "zxKeyboard.h" +#include "stm32f4xx.h" +#include "stm32f4xx_gpio.h" +#include "stm32f4xx_rcc.h" +#include "io.h" +#include "string.h" +#include "ps2key.h" + + +static uint8_t
in „STECCY - ZX-Spectrum-Emulator mit STM32“ · Projekte & Code ·
-
Datei
main.c
-------------------------*/ #include "main.h" #include "dcmi_ov9655.h" /** @addtogroup STM32F2xx_StdPeriph_Examples * @{ */ /** @addtogroup DCMI_OV9655_Camera * @{ */ /* Private typedef ----------------------------------------------------------
in „STM3220G-EVAL + Kamera OV2460“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
--------------------*/ /* Pre-compiler coherency check */ #define PROJECT_CHK #include "CrossCheck.h" #undef PROJECT_CHK /* Includes */ #include "stm32f4xx_can.h" #include "CAN_Config.h" #if defined(PFC_ENABLED) #include "PIRegulatorClass.h" #endif #include "MCTuningClass.h" #include "MCInterfaceClass.h
in „STM32F4 - CAN1 empfängt nichts“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
else { /*##-4- Create and Open a new text file object with write access #####*/ if(f_open(&MyFile, "STM32.TXT", FA_CREATE_ALWAYS | FA_WRITE) != FR_OK) { /* 'STM32.TXT' file Open for write Error */ Error_Handler(); } else { /*##-5- Write data to the text file ################################*/ res = f_write
in „FatFS Beispiel STM3210C-EVAL f_open Fehler“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32l4xx_it.c
**** */ /* Includes ------------------------------------------------------------------*/ #include "stm32l4xx_hal.h" #include "stm32l4xx.h" #include "stm32l4xx_it.h" /* USER CODE BEGIN 0 */ #include "stdbool.h" #include "tim1funct.h" #include "tim15funct.h" #include "config.h" #include "alltimfunct.h"
in „stm32f303RE - initialisierungen verbeissen sich“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
TFT-direct-drive.htm#tft-b 2012-12-12 Michael Nowak www.mino-elektronik.de Alle Angaben ohne Gewähr. */ #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_fsmc.h" #include "stm32f4xx_dma.h" #include "cp850-8x16.dat" // Datei mit Zeichensatz #define TFT_ADR 0x60000000 // CS-Bereich #define SCHWARZ
in „TFT-direct-drive, WQVGA-TFT an STM32F4“ · Projekte & Code ·
-
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 ·
-
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
in „STMicroelectronics liefert neue MPU, GigaDevice partnert mit Segger, neue FPGAs und mehr“ · Mikrocontroller und Digitale Elektronik · · Diagramme
-
PDF
stm32g030c6.pdf
Teilenummer 5-Kanal-DMA-Controller mit flexibler Zuordnung STM32G030x6 STM32G030C6, STM32G030F6, 12-Bit, 0,4 µs ADC (bis zu 16 ext. Kanäle) STM32G030J6, STM32G030K6 – Bis zu 16 Bit mit Hardware-Oversampling STM32G030x8
in „Muß der STM32G programmiert werden?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Error.txt
\src\stm32f4xx_tim.o Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_syscfg.o Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_spi.o Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_sdio.o Libraries\STM32F4xx_StdPeriph_Driver
in „Billiges Cortex-M4-Board STM32F4DISCOVERY jetzt erhältlich“ · 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 ·
-
Datei
tools.c
*************** */ /* -------------- Standard Include Files ----------------- */ #include <stdbool.h> #include <stdint.h> #include <stdio.h> /* --------------- Special Include Files / Librarys ------ */ #include "tm_stm32f4_rtc.h" #include "tm_stm32f4_disco.h" #include "tm_stm32f4_nrf24l01_cj.h" #include "tm_stm32f4_rtc.h" #include "tm_stm32f4_delay.h" /* -------------- Projekt Include Files ---------------- */ #include "config.h" #include "tools.h" /* -------------- Typen Deklarationen---------------------
in „Organisation der Header und Includes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
spi1.c
/ /* Includes ------------------------------------------------------------------*/ #include "stdio.h" #include "stdint.h" #include "stm32f4xx.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_spi.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_dma.h" #include "spi1.h" /** @addtogroup SPI1 * @{ */
in „STM32 SPI Init“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f10x_it.c
****************************************************************************** * @file TIM/6Steps/stm32f10x_it.c * @author MCD Application Team * @version V3.5.0 * @date 08-April-2011 * @brief Main Interrupt Service Routines. * This file provides template for all exceptions handler and peripherals *
in „STM32F1 Brushless Motor Steuerung“ · 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
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
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 ·
-
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 ·
-
Datei
rs232.txt
#include "stm32h7xx_ll_gpio.h" #include "stm32h7xx_ll_usart.h" #include "stm32h7xx_ll_dma.h" #include "stm32h7xx_ll_tim.h" #include "AllgemeineFunktionen.h" #include "Rs232Kommunikation.h" #include "ModbusRtu.h" #include <string.h> Rs232 oRs232; Rs232::Rs232() { } void Rs232::init(UINT32 ui32Baudrate) { LL_TIM_InitTypeDef sTimInitStruktur; LL_GPIO_InitTypeDef sGpioInitStruktur; LL_USART_InitTypeDef sUSART_InitStruct; LL_DMA_InitTypeDef
in „STM32H7 USART geht nicht mehr mit Compiler V6.14“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f10x.h" // Deklaration der Peripheriefunktionen #include "stm32f10x_gpio.h" #include "stm32f10x_usart.h" #include "stm32f10x_i2c.h" #include "stm32f10x_exti.h" #include "stm32f10x_rcc.h" #include "stm32f10x_dma.h" #include "system_stm32f10x.h" #include "misc.h" #include <math.h> #include <stdio.h> #include <semihosting.h> #include "MPU6050.h" #define LED GPIO_Pin_13 //C //UART #define TX1 GPIO_Pin
in „STM32F103 + I2C + MPU6050 - DMA“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
debug_all_demo.pdf
1. Description 1.1. Project Project Name debug_all_demo Board Name debug_all_demo Generated with: STM32CubeMX 4.25.1 Date 11/22/2018 1.2. MCU MCU Series STM32F1 MCU Line STM32F103 MCU name STM32F103C8Tx MCU Package LQFP48 MCU Pin number 48 Page 1 debug_all_demo Project Configuration Report 2. Pinout
in „CubeMX und HAL - I2C hängt sich auf“ · 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
-
PDF
STM32MP151A_Block_Diagram.pdf
Description STM32MP151A Figure 1. STM32MP151A block diagram HSI HSE (XTAL) IC Supplies @VDD_ANA @VDD 2 CSI LSI @VDD_PLL PLL1/2/3/4 y T RCC 5 a T T PWR 9 debug TimeStamp T n GENerator TSGEN T EXTI 16ext 176 GIC T C
in „STM32MP1 von ST“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Code-Editor mit STM32 HAL-Treiberdateien
TIA_FK743M5 - EXTI_INT Core > Src > stm32h7xx_it.c quadspi.c rtc.c spi.c stm32h7xx_hal_msp.c stm32h7xx_it.c syscalls.c sysmem.c system_stm32h7xx.c tim.c GLIEDERUNG hpdc_USB_OTG_FS Deklaration hdma_spi5_tx Deklaration
in „Visual Studio Code & Funktionsliste“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
max7219.c
Treibers Autor : Christian Julius 12.2015 ******************************************** */ #include "stm32f4xx.h" #include "stm32f4xx_spi.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_gpio.h" /* -------------- Standard Include Files ----------------- */ #include <stdio.h> #include <stdint.h> #include
in „Codearchiv: STM32F4xx MAX7219 7-Segment Ansteuerung“ · Projekte & Code ·
-
PDF
en.DM00315319.pdf
a 3.3 V CMOS output can drive without any problem. An STM32 FT pad can accept 0 V to 5 V CMOS level input when V DD = 3.3 V. 20/31 AN4899 Rev 3 AN4899 GPIO electrical characteristics and definitions 5.3.5 USB VBUS example The VBUS pad of STM32 devices is five-volt
in „STM32: 5 Volt tolerante Eingänge sind es nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
debounce.c
/ #ifndef DOXYGEN #if defined(USE_STDPERIPH_DRIVER) || defined(USE_HAL_DRIVER) #include "cm_atomic.h" #endif #if defined(USE_STDPERIPH_DRIVER) #if defined(STM32L1XX_MD) || defined(STM32L1XX_MDP) || defined(STM32L1XX_HD) #include <stm32l1xx.h> #else #error Device not specified. #endif #elif defined(USE_HAL_DRIVER) #if defined(STM32F103xB) #include "stm32f1xx_hal.h" #elif defined(STM32L151xB) #include "stm32l1xx_hal.h" #else #error Device not specified. #endif #else #include <avr/io.h> // for PORT/ PIN access #include <avr/interrupt.h
-
PDF
PitschLight_Doku_V1.2.pdf
5. Die Randeinstellung (Parameter L, W, T und H) am besten mit einem Standbild (ideal sind Comics) vornehmen. Die Grenzen so einstellen, dass die LEDs die Farben des äußeren sichtbaren Bildrandes anzeigen
in „Ambilight mit STM32F4discovery und TVP5150AM1“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
max7219.c
Treibers Autor : Christian Julius 12.2015 ******************************************** */ #include "stm32f4xx.h" #include "stm32f4xx_spi.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_gpio.h" /* -------------- Standard Include Files ----------------- */ #include <stdio.h> #include <stdint.h> #include
in „Organisation der Header und Includes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
max7219.c
Treibers Autor : Christian Julius 12.2015 ******************************************** */ #include "stm32f4xx.h" #include "stm32f4xx_spi.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_gpio.h" /* -------------- Standard Include Files ----------------- */ #include <stdio.h> #include <stdint.h> #include
in „NRF24L01: Handauflegen hilft?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#define STM32F429_439xx #include "stm32f4xx.h" #include "stm32f4xx_conf.h" //#include "core_cm4_simd.h" //#include "core_cm4.h" //#include "core_cmFunc.h" //#include "core_cmInstr.h" //#include "system_stm32f4xx.h" //#include "spi.h" //#include "tlc.h" #include "stm32_ub_spi1.h" uint8_t spi_send(uint8_t wert) { uint8_t ret_wert; // hier Code einfügen und // ChipSelect-Pin auf LO legen // byte senden und empfangen ret_wert=UB_SPI1
in „STM32F429 - kein Takt am SPI“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tools.c
*************** */ /* -------------- Standard Include Files ----------------- */ #include <stdbool.h> #include <stdint.h> #include <stdio.h> /* --------------- Special Include Files / Librarys ------ */ #include "tm_stm32f4_rtc.h" #include "tm_stm32f4_disco.h" #include "tm_stm32f4_nrf24l01_cj.h" #include "tm_stm32f4_rtc.h" #include "tm_stm32f4_delay.h" /* -------------- Projekt Include Files ---------------- */ #include "config.h" #include "tools.h" #include "sensor.h" /* -------------- Typen Deklarationen-
in „Organisation der Header und Includes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2c_stm32f10x.c
die Hardware-Adressen direkt hinterlegt werden. * * Erzeugt: 31.03.2014 * Author: Nicolas */ #ifndef STM32F10x #error "only STM32F10x supported" #endif #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "stm32f10x_i2c.h" #include "../src_misc/clock.h" // glu_millis #include "../../main.h" #include "i2c_generic.h" #include "i2c_stm32f10x.h" #ifdef I2C_DEVICE_SPECIFIC // Globale Variablen fuer I2C-Status // Fixme: unbenoetigte Variablen I2C_TypeDef * I2C_Module; volatile uint8_t deviceAddress; volatile uint8_t
in „STM32F10x : Fehler bei I2C“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
code_funktionsfaehig.txt
#include "stm32f0xx.h" #include "stm32f0xx_gpio.h" #include "stm32f0xx_rcc.h" #include "stm32f0xx_spi.h" void main() { /*Clock für die Peripherie einschalten*/ RCC_APB2PeriphClockCmd(RCC_APB2Periph_SPI1, ENABLE);
in „STM32F0 SPI - Funktioniert nicht.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "stm32f10x_spi.h" #include "system_stm32f10x.h" #include "stm32f10x_lib.h" void SysTick_Configuration(); void Delay(vu32 nTime); void SPI_WriteByte(
in „STM32 SPI-Bus Probleme mit Prescaler und delay() Realisierung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ipaddr.h
*/ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __MAIN_H #define __MAIN_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx.h" // #include "stm32f4x7_eth_bsp.h" /* Exported
in „STM32-E407 Ethernet / UDP“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f10x_it.h
************************************************************************ * @file TIM/TIM9_OCToggle/stm32f10x_it.h * @author MCD Application Team * @version V3.5.0 * @date 08-April-2011 * @brief This file contains the headers of the interrupt handlers. *************************************************
in „STM32 - Eclipse, ARM GCC - Funktionsaufruf geht nicht :-(“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ino.txt
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 #define CAN_STM32_ERROR_UNSUPPORTED_FRAME_FORMAT 1003 /* * Calculation
in „Arduino Blue Pill & CAN mit SN65HVD230“ · Mikrocontroller und Digitale Elektronik ·