-
PDF
PitschLight_Doku_V1.2.pdf
Ein Full-Screen AmbiLight mit bis zu 312 LEDs auf Basis des TVP5150AM1 Video Prozessors und eines STM32F4discovery boards Stand: Version 1.2, November 2014 Das Foto stammt von Pat Wat (frankp) So sieht‘s aus wenn es funktioniert Disclaimer /***************************************************** * * Control
in „Ambilight mit STM32F4discovery und TVP5150AM1“ · 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
edm_adc_multiplex_stm32.c
ADC-Routinen fuer EDM * Gemultiplexted auslesen * * 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
in „STM32: Suche Hilfe zu ADC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/* Includes ------------------------------------------------------------------*/ #include "stm32f2xx.h" #include "stm32_eval.h" #include "stm322xg_eval_lcd.h" #include "stm32f2xx_spi.h" #include <stdio.h> GPIO_InitTypeDef GPIO_InitStruct; SPI_InitTypeDef SPI_InitStructure; static uint8_t key_state
in „STM32 SPI Mosi Pegel zu niedrig“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
en.DM00051352.pdf
(msbyte) at the highest-numbered byte. See Figure 7 for an example. Figure 7. Little-endian example 0HPRU\ 5HJLVWHU $GGUHVV $ % OVE\WH % % % % $ % $ % $ % PVE\WH Doc ID 022979 Rev 1 21/91 The STM32 Cortex-M0 processor PM0215 2.3 Exception model This section
in „Umbau von STM32F030F4P6 auf AVR mit Software“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Quellcode.c
#include <stm32f10x_lib.h> // STM32F10x Library Definitions #include "STM32_Init.h" // STM32 Initialization #define S3 0x00002000 // PC13: S3 #define S2 0x00000001 // PA0 : S2 #define UNBOUNCE_CNT 5 // unbounce the
in „Unverständnis bei Pinauswahl ARM“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
------------------------------------------------------------------------------------- * Breadboard STM32F4 Discovery Board * HC-SR04 Pins * ----------------------------------------------------------------------------------------- * 5V 5V * TRIG PC6 * ECHO PB7 * GND GND */ /* Includes */ #include "stm32f4xx.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_tim.h" /************************************************************** Funktionen *******************************************************
in „STM32F4 Discovery Board: Aufruf Funktionen in Atollic TrueStudio“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f2xx_rcc.h
-------------------------*/ #ifndef __STM32F2xx_RCC_H #define __STM32F2xx_RCC_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32f2xx.h" /** @addtogroup STM32F2xx_StdPeriph_Driver
in „STM32F2xx USART weigert sich“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Blackpill_STM32F411CEU6_WeAct_Black_Pill_V2.0.pdf
R5 VREF+ 9 VDDA/VREF+ VSSA/VREF- 8 GND R10 4 3 10KΩ D3 NC BAT54C STM32F4X1CXU6 SW1 PB2 L1 1 3 2 4 3.3V 3.3V NRST 3*4按键 GND 10uH ±10% C7 RTC 电源 BOOT 设置 100nF 3.3V 复位电路 V1.2 修改 BOOT 跳线为 BOOT0 按键, BOOT1 10K 下拉 VREF+ C9 C10 C11 C12 100nF 100nF 100nF 100nF B B U1A P1 PA0
in „was kommt nach dem Bluepill-Board?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ILI9341_template_BluePill.ino
/findyours?_trksid=p2047675.l2563 // // STM32F103 // http://stores.ebay.de/SenseCore?_trksid=p2047675.l2563 // // TFT-Anschluss STM32F103 TFT 9341 //#define TFT_CS A2 3 //#define TFT_DC A1 5 //#define TFT_RST R rst-rst //#define TFT_MOSI A7 6 //#define TFT_SCK A5 7 //#define TFT_MISO 9 wird nicht gebraucht // Port's fuer TFT #define PA2 2 // CS #define PA1 1 // DC // #define PA0 0 // RST STM32 Port R an PIN 4 TFT #define PA7 7 / MOSI Adafruit_ILI9341 tft = Adafruit_ILI9341
in „TFT mit ILI9341“ · 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
SSD1963.h
#ifndef __SSD1963_H #define __SSD1963_H #include "stdint.h" #include "stm32f4xx.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_fsmc.h" #include "stm32_ub_systick.h" //---------------------
in „7 Zoll LCD Display“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f30x_gpio.h
**** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F30x_GPIO_H #define __STM32F30x_GPIO_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32f30x.h" /** @addtogroup
in „Probleme mit dem STM32F3Discoery, mal wieder.“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F4-BASE.pdf
müssen <2R ESR haben! (LOW ESR!) guenes@ieee.org 1 2 3 4 5 6 7 8 01.03.2012 06:27:06 f=0.74 C:\Users\SuperK\13-Eagle\1-Projekte\STM32F407Vx_Baseboard\STM32F4-BASE.sch (Sheet: 1/4) 1 2 3 4 5 6 Stellung: 1-2 Akku Betrieb 2-3 Versorgung über USB +5V V A P 1 2 P 1 2
in „STM32F407 (100pin) Basisboard - Review bitte“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F4-BASE.pdf
müssen <2R ESR haben! (LOW ESR!) guenes@ieee.org 1 2 3 4 5 6 7 8 01.03.2012 18:44:41 f=0.74 C:\Users\SuperK\13-Eagle\1-Projekte\STM32F407Vx_Baseboard\STM32F4-BASE.sch (Sheet: 1/4) 1 2 3 4 5 6 Stellung: 1-2 Akku Betrieb 2-3 Versorgung über USB +5V V A P 1 2 P 1 2
in „STM32F407 (100pin) Basisboard - Review bitte“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
spc560b50.h
vuint32_t:7; vuint32_t NSTART:1; vuint32_t JABORT:1; vuint32_t:2; vuint32_t JSTART:1; vuint32_t:3; vuint32_t CTUSTART:1; vuint32_t CHADDR:7; vuint32_t:3; vuint32_t ACK0:1; vuint32_t:2; vuint32_t ADCSTATUS:3;
in „Toolchain für PowerPC mit VLE“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
HD66766_example.c
Disclaimer: // This code can't be used directly as is, but has to be included in the STM32IDE framework // ======================================================================================== #include "main.h" #include "image_data.h" #define LCD_WIDTH 120 #define LCD_HEIGHT 160 #define INFOBAR_HEIGHT 16 // Using STM32 FSMC mode to communicate with the LCD in 16-bit mode // The FSMC (Flexible Static Memory Controller) is a hardware engine inside the STM32 // that allows the MCU to treat the LCD as if it were a piece
in „LCD-Modul F51661GNCJU-MLW-AA * Info *“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
FK723M1-ZGT6.zh-CN.en.pdf
www.onlinedoctranslator.com 1 2 3 4 5 6 SWD and USART1 interfaces A A P1 SWCLK PA14 USART1-RX PA10 Here, the STM32H723 is divided into two parts, but they are actually the same chip. 1 5 L1 SWDIO PA13 2 6 USART1-TX PA9 CBG160808U121T Ferrite beads/120200mAMHz GND 3 7 R7 1KRST VDDA 3.3V Analog voltage 5V 4 8 3.3V
in „Neues Blackboard mit STM32H723“ · 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
irmpconfig.h
--------- * Hardware pin for ARM STM32 (HAL) - don't change here, define IRMP_RECEIVE_GPIO_Port & IRMP_RECEIVE_PIN in STM32Cube (Main.h) *--------------------------------------------------------------------------------------------------------------------------------------------------- */ #elif defined (ARM_STM32_HAL) // STM32: IRMP_RECEIVE_GPIO_Port & IRMP_RECEIVE_PIN must be defined in STM32Cube # define IRMP_PORT_LETTER IRMP_Receive_GPIO_Port # define IRMP_BIT_NUMBER IRMP_Receive_Pin /*-----------------
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
nrf24l01.c
----------------- */ #include "stm32f4xx.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_spi.h" #include "stm32f4xx_gpio.h" /* -------------- Standard Include Files ----------------- */ #include <stdint.h> /* --------------- Special Include Files / Librarys ------ */ #include "tm_stm32f4_delay.h" /* -------------- Projekt Include Files ---------------- */ #include "nrf24l01.h" #include "config.h" /* -------------- Typen Deklarationen--------------------- */ /* -------------- Defintionen
in „GCC Optimierung killt Funktion“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
BLDC_motors.pdf
sw2(PC7) and sw3(PC1). Some BLDC-motor driver boards JYQD_V6 have a comparator-IC too: LM339, that we do not use! Instead we use our own LM339N. So much for the hardware. The software side consists of the SW4STM32
in „BLDC Ansteuerung“ · 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
-
Datei
main.c
#include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "stm32f10x_spi.h" #include "stm32f10x_usart.h" #include "system_stm32f10x.h" void SPI_WriteByte(unsigned char ucByte) { while(SPI_I2S_GetFlagStatus(
in „STM32 - USART und SPI“ · 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
stm32f10x.h
* @{ */ #ifndef __STM32F10x_H #define __STM32F10x_H #ifdef __cplusplus extern "C" { #endif /** @addtogroup Library_configuration_section * @{ */ /* Uncomment the line below according to the target STM32 device used in your
in „COIDE 2.7.0 und STMF103C8T6 (china board), startprobleme“ · 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
rfm22b.c
#include "rfm22b.h" #ifndef __STM32F4_DISCOVERY_RFM22B_H #define __STM32F4_DISCOVERY_RFM22B_H #ifdef __cplusplus extern "C" { #endif #include "stm32f4xx.h" #include "stm32f429i_discovery.h" #include "rfm22b.h" #include
in „STM32 und RFM22B“ · 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
stm32f10x_it.h
BY CUSTOMERS OF THE * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. * * <h2><center>© COPYRIGHT 2010 STMicroelectronics</center></h2> */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F10x_IT_H #define __STM32F10x_IT_H /
in „Cortex I2C zu kurze Impulsdauer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
httpd_cgi_ssi.c
-------------------------*/ #include "lwip/debug.h" #include "httpd.h" #include "lwip/tcp.h" #include "fs.h" #include "main.h" #include <string.h> #include <stdlib.h> tSSIHandler ADC_Page_SSI_Handler; uint32_t ADC_not_configured=1; /* we will use character
in „LWIP Webserver“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
httpd_cgi_ssi.c
-------------------------*/ #include "lwip/debug.h" #include "httpd.h" #include "lwip/tcp.h" #include "fs.h" #include "main.h" #include <string.h> #include <stdlib.h> tSSIHandler ADC_Page_SSI_Handler; uint32_t ADC_not_configured=1; /* we will use character
in „LWIP Webserver“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
User_Setup.h
// // ################################################################################## // Define STM32 to invoke optimised processor support (only for STM32) //#define STM32 // Defining the STM32 board allows the library to optimise the performance // for UNO compatible "MCUfriend" style shields //#define NUCLEO_64_TFT //#define NUCLEO_144_TFT // STM32 8 bit parallel only: // If STN32 Port A or B pins 0-7 are used for 8 bit parallel data bus bits 0-7 // then this will improve rendering performance by a factor of ~8x //#define STM_PORTA_DATA_BUS
in „Powerpins am ESP32-DevKitC, WDT_RTC_RESET“ · 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
// Simple GPIO Example for STM32F10x und STM32F30x Discovery Modul Juni 2013 // A.Schnell #include "stm32f30x.h" #include "stm32f30x_gpio.h" #include "stm32f30x_rcc.h" #define BUTTON GPIO_Pin_0 // User Button #define LED6 GPIO_Pin
in „AVR ARM STM32F3 Discovery GPIO Einführung“ · Projekte & Code ·
-
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 ·
-
PDF
MPPT_charger_20A.pdf
Sheet: /DCDC power stage/ D File: dcdc.sch Author: Martin Jäger If not stated otherwise, all MLCC 50V X7R Size: A4 Date: 2018-01-18 Rev: 0.10 KiCad E.D.A. kicad (2017-11-18 revision ff5ee05de)-makepkg Page: 2/6 1 2 3 4 5 6 1 2 3 4 5 6 MCU STM32F072 Reset and boot circuit A A +3.3V PWR_FLAG _ U L4 C O S
in „EMV-Test DC/DC - Verbesserungsvorschläge gesucht“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
HWMonitor.txt
ITM0 ITM1 SIT0 SIT1 [ ] UDC0 UDC1 [ ] UDT0 UDT1 [ ] ICF0 ICF1 [ ] WPPE [ ] FAS0 FAS1 PRIM _ADR _GTM _STM DRV0 _ADR H15F _GTF DRV1 _ADR H15F _GTF SECD _ADR _GTM _STM DRV0 _ADR H15F _GTF DRV1 _ADR H15F _GTF IDE2 _ADR PCI_ [ ] ITM0 ITM1 SIT0 SIT1 [ ] UDC0 [ ] UDC1 [ ] UDT0 UDT1 [ ] ICF0 ICF1 [ ] WPPE [ ] FAS0 FAS1 PRIM _ADR _GTM _STM DRV0 _ADR H15F _GTF DRV1 _ADR H15F _GTF SECD _ADR _GTM _STM DRV0 _ADR H15F _GTF DRV1 _ADR H15F _GTF GTM_ STM_ H15P GTF0 GTF1 PX43 _ADR PBAS [ ] BAS0 SMBB AZAL _ADR _PRW BUFA BUFB IRQV LNKA _HID _UID
in „Gibt Festplatte langsam Geist auf?“ · PC Hard- und Software ·
-
PDF
STM32MP151A_Block_Diagram.pdf
a 128 bits T DAP S ) T (JTAG / SWD) I DCMI 14b 17 Cortex-A7 CPU $ z F (Camera I/F) 650 MHz + MMU + FPU + L H T SYSRAM 256KB DLYBSD3 NEON T B M (SDMMC3 DLY control) 6 6 T ROM 128KB F L 32K D$ 2 2 F T SDMMC3 D 4b 10 32K I$ ( T BKPSRAM 4KB @ O Y c F (HS/FS) P 4
in „STM32MP1 von ST“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
simple_server.c
fill_tcp_data_p(buf, plen, "</table>"); plen = fill_tcp_data_p(buf, plen, PSTR("<a style=color:red><h1>STM32F103 WEBSERVER<h1></a>")); plen = fill_tcp_data_p(buf, plen, "<table border>" ); plen = fill_tcp_data_p(buf, plen, "<thead>"); plen = fill_tcp_data_p(buf, plen, "<tr>"); plen = fill_tcp_data_p(
in „Webpage Webserver“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
WeAct-STM32G0xxC0xxCoreBoard_V10_SchDoc.pdf
P I U 210 1 8 SB2 2 PA14 19 PA13 P I U 2 0 1 9 PA14-BOOT0 SW1 1 GND PB6 20 P1P P I U 2 0 2 0 PB6 PB7 P I U 2 0 1 PB7 VDD33 PI P 1 01 1 SWDIO PI P 1 02 2 GND P I U 2 0 5 VSS/VSSA SWCLK PI P 1 03 3 PI P 1 04 GND 4 STM32C011F6P6/STM32G031F8P6/STM32G030F6P6 Header 4H SW2 2 GND PPW SWDIO PA13 Y RR1 E SWCLK
in „STM32G031G8 Grundbeschaltung / keine Verbindung über SWD“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32H745ZITX_FLASH_CM7.ld
******************************* ** ** File : LinkerScript.ld ** ** ** Abstract : Linker script for STM32H7 series ** 1024Kbytes FLASH and 192Kbytes RAM ** ** Set heap size, stack size and stack location according ** to application requirements. ** ** Set memory bank area and size if external memory is used. ** ** Target : STMicroelectronics STM32 ** ** Distribution: The file is distributed as is, without any warranty ** of any kind. ** ***************************************************************************** ** @attention ** ** Copyright
in „STM32H745 I2S DMA (NUCLEO-STM32H745ZI-Q DualCore)“ · 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
HWMonitor.txt
-------------- CPU Thread 0 APIC ID 0 Topology Processor ID 0, Core ID 0, Thread ID 0 Type 02002008h Max CPUID level 00000001h Max CPUID ext. level 80000018h Function eax ebx ecx edx 0x00000000 0x00000001 0x68747541 0x444D4163 0x69746E65 0x00000001 0x00040F32 0x00020800 0x00002001 0x178BFBFF 0x80000000
in „CPU Temperatursensor defekt => Absturz“ · PC Hard- und Software ·
-
Datei
bb_i2c_arm.c
#include "STM32F10x.h" #include <stm32f10x_rcc.h> #include <stm32f10x_gpio.h> #define GLUE(a, b) a##b #define sbi(var, bit) (var|=1<<bit)//set #define cbi(var, bit) (var&=~(1<<bit))//clear #define tbi(var, bit) (
in „stm32f103 i2c_read“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsnd.c
IRSND_XMEGA_OC0B, IRSND_XMEGA_OC0C, IRSND_XMEGA_OC0D, IRSND_XMEGA_OC1A, or IRSND_XMEGA_OC1B in irsndconfig.h # endif // IRSND_OCx #elif defined (PIC_C18) // Microchip C18 compiler //Nothing here to do here -> See irsndconfig.h #elif defined (ARM_STM32) // STM32 //Nothing here to do here -> See irsndconfig.h #elif defined (ARM_STM32_HAL) // STM32 with Hal Library //Nothing here to do here -> See irsndconfig.h #elif defined (__xtensa__) // ESP8266 //Nothing here to do here -> See irsndconfig.h /*-------------------------------
in „IR Fernbedienung mit IRSND“ · 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
stm32f30x_rcc.h
**** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F30x_RCC_H #define __STM32F30x_RCC_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32f30x.h" /** @addtogroup STM32F30x_StdPeriph_Driver
in „Probleme mit dem STM32F3Discoery, mal wieder.“ · 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 ·