-
Datei
main.h
#ifndef __MAIN_H_ #define __MAIN_H_ #include <libopencm3/stm32/rcc.h> #include <libopencm3/stm32/gpio.h> #include <libopencm3/stm32/i2c.h> #include <libopencm3/stm32/exti.h> #include <libopencm3/cm3/systick.h> #include <libopencm3/cm3/nvic.h> #include <stdint.h
in „STM32F0 EXTI“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
triple_interleaved.c
configured, this is done through SystemInit() function which is called from startup files (startup_stm32f40xx.s/startup_stm32f427x.s) before to branch to application main. To reconfigure the default setting of SystemInit() function, refer to system_stm32f4xx.c file */ /* ADC configuration */ ADC_Config
in „STM32, triple mode Interleaved mode, periodisch falsch“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32l4xx_it.c
Header */ /** ****************************************************************************** * @file stm32l4xx_it.c * @brief Interrupt Service Routines. ****************************************************************************** * * COPYRIGHT(c) 2019 STMicroelectronics * * Redistribution and use in
in „clock configuration“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usart_stm32f4xx.c
/* * usart_stm32f4xx.c * * USART/UART-Treiber * * $Date: 2019-03-24 09:25:14 +0100 (So, 24 Mrz 2019) $ * $Revision: 578 $ * * 15.05.2019 Nicolas */ #ifdef STM32F4XX #include "usart.h" #include "hw_config.h" #include
in „STM32: Sendepuffer für USART“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/**************************************************************************//** * @file main.c * @brief STM32 Timer interrupt demo * * MCU läuft nur mit 16MHz, da die PLL usw. nicht konfiguriert ist. * ************************************************************************** */ #include <stm32g071xx.h> #include <stm32g0xx_hal.h> #include <stm32g0xx_hal_gpio.h> #include <stm32g0xx_hal_tim.h> static TIM_HandleTypeDef my_tim2; /**************************************************************************//** * @brief
in „STM32G0xx Timer Interrupt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4x7_eth_bsp.c
/** ****************************************************************************** * @file stm32f4x7_eth_bsp.c * @author MCD Application Team * @version V1.1.0 * @date 31-July-2013 * @brief STM32F4x7 Ethernet hardware configuration. ************************************************************
in „STM32-E407 Ethernet / UDP“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irmp.c
| UART0_UCSZ0_BIT_VALUE | UART0_URSEL_BIT_VALUE; UART0_UCSRB |= UART0_TXEN_BIT_VALUE; // enable UART TX #else // other log method initextlog(); #endif //IRMP_EXT_LOGGING #endif //ARM_STM32F4XX #endif // UNIX_OR_WINDOWS
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
irmp.c
| UART0_UCSZ0_BIT_VALUE | UART0_URSEL_BIT_VALUE; UART0_UCSRB |= UART0_TXEN_BIT_VALUE; // enable UART TX #else // other log method initextlog(); #endif //IRMP_EXT_LOGGING #endif //ARM_STM32F4XX #endif // UNIX_OR_WINDOWS
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
PDF
STM_DEV.pdf
Date: 24.01Time: 18:3Sheet 1 of 7 FileC:\Projekte\ALTIUM\STM-DEV\Power.SchDoc 1 2 3 4 1 2 3 4 VCC UC1C R0 PA0A PIUC1023 PIUC1015 PC0C RK262 BOOT1 P OCTST S PA1A 24 PA0-WKUP PC0 16 PC1C POENC_nRESES 240R PB2 RK1RK P ORTST S PA2A PIUC2524 PA1
in „STM32 Development Board“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.cc
include <cstddef> #include <cassert> #include <array> #include <limits> #include <climits> #include <stm32f10x.h> #include <stm32f10x_can.h> #include <stm32f10x_gpio.h> #include <misc.h> template <typename T> __attribute__ ((always_inline)) constexpr T cmask (const int count, int bit = 0) { return (count
in „CAN to CAN Converter“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
HWMonitor.txt
0x00000001 0x00040F32 0x00020800 0x00002001 0x178BFBFF 0x80000000 0x80000018 0x68747541 0x444D4163 0x69746E65 0x80000001 0x00040F32 0x000008CD 0x0000001F 0xEBD3FBFF 0x80000002 0x20444D41 0x6C687441 0x74286E6F
in „CPU Temperatursensor defekt => Absturz“ · PC Hard- und Software ·
-
PDF
MPPT_charger_20A.pdf
: 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 C 600R O S +3.3V C34 +3.3V U2 O 1
in „EMV-Test DC/DC - Verbesserungsvorschläge gesucht“ · Analoge Elektronik und Schaltungstechnik ·
-
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
stm32f30x_gpio.c
/** ****************************************************************************** * @file stm32f30x_gpio.c * @author MCD Application Team * @version V1.0.1 * @date 23-October-2012 * @brief This file provides firmware functions to manage the following * functionalities of the GPIO peripheral:
in „Probleme mit dem STM32F3Discoery, mal wieder.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f429i_discovery_lcd.c
/** ****************************************************************************** * @file stm32f429i_discovery_lcd.c * @author MCD Application Team * @version V1.0.1 * @date 28-October-2013 * @brief This file includes the LCD driver for ILI9341 Liquid Crystal * Display Modules of STM32F429I-DISCO
in „STM32F429 Display per SPI ansteuern“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsnd.c
----------- */ static void irsnd_on (void) { if (! irsnd_is_on) { #ifndef ANALYZE # if defined(PIC_C18) // PIC C18 PWMon(); // IRSND_PIN = 0; // output mode -> enable PWM outout pin (0=PWM on, 1=PWM off) # elif defined (ARM_STM32) // STM32 TIM_SelectOCxM(IRSND_TIMER, IRSND_TIMER_CHANNEL, TIM_OCMode_PWM1
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
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 ·
-
Datei
STM32Quelltext.txt
der ADC-Werte #define lowMask ((uint32_t)0xFFFF) #define highMask ((uint32_t)0xFFFF0000) u32 ADClow1=0; u32 ADChigh1=0; u32 ADClow2=0; u32 ADChigh2=0; char blar = 0X50; // Protokollvariablen zur Busübertragung u32 Protokoll[4]; #define Bit0to6 ((uint32_t)0x7F) #define Bit7to11 ((uint32_t)0xF80) #define Bit0to1 ((uint32_t)0x3) #define Bit2to8 ((uint32_t)0x1FC) #define Bit9to11 ((uint32_t)0xE00) // Protokoll Codierung int ADC1bit = 0x1; //0b00000001;
in „STM32-F103 AD-Wandler Werte übertragen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
> #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 uint32_t isrcnt=0; volatile uint32_t spiisrcnt=0; volatile uint32_t altsysticks=0; volatile uint32_t neusysticks=0; volatile uint8_t isr_aus=0; volatile uint16_t seqa=0xffff; volatile uint16_t seqb=0xffff;
in „Hook up a MEMS microphone to the I2S of a Cortex M4“ · Projekte & Code ·
-
Datei
irsnd.c
----------- */ static void irsnd_on (void) { if (! irsnd_is_on) { #ifndef ANALYZE # if defined(PIC_C18) // PIC C18 PWMon(); // IRSND_PIN = 0; // output mode -> enable PWM outout pin (0=PWM on, 1=PWM off) # elif defined (ARM_STM32) // STM32 TIM_SelectOCxM(IRSND_TIMER, IRSND_TIMER_CHANNEL, TIM_OCMode_PWM1
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
EclipseInstallation.txt
: GNU ISO C11 - Miscellaneous: Hake bei Generate assembler listing Cross ARM C Linker - General: Pfad zum Linkerskript einfügen: "${workspace_loc:/${ProjName}/stm32f407_flash.ld}" - Libraries: (-l) m c Karteireiter
in „Ambilight mit STM32F4discovery und TVP5150AM1“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
MyLink.ld
layout; remark by BATH in 2015-08-13!) //-------------------------------------------------------*/ /* STM32F205RTC: FLASH: 256kB (0x08000000 - 0x0803FFFF) // SRAM: 112kB (0x20000000 - 0x2001BFFF) // SRAM: 16kB (0x2001C000 - 0x2001FFFF) */ OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm
in „Seltsame Initialisierungen und Abstürze.“ · 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 hspi1 Deklaration hspi5
in „Visual Studio Code & Funktionsliste“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
STM32_Init.c
/*---------------------------------------------------------------------------- * Name: STM32_Init.c * Purpose: STM32 peripherals initialisation * Version: V1.30 * Note(s): *---------------------------------------------------------------------------- * This file is part of the uVision/ARM
in „ARM STM32 Eingänge werden nicht erkannt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_Init.c
/*---------------------------------------------------------------------------- * Name: STM32_Init.c * Purpose: STM32 peripherals initialisation * Version: V1.30 * Note(s): *---------------------------------------------------------------------------- * This file is part of the uVision/ARM
in „ARM STM32 Eingänge werden nicht erkannt“ · 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
bootloader_105.asm
-------- Start des Userprogramms ------------------------------------- Assembler : naken_asm MCU : STM8S103F3 Takt : interner Takt 16 MHz 11.04.2017 R. Seelig ----------------------------------------------------------------------- */ .stm8 #include "stm8defs.inc" ; RAM lieg an Adresse 0x0000..0x03ff
in „Serial Bootloader für STM8S103F3P6 (Linux)“ · Projekte & Code ·
-
Datei
eeprom.c
include <stdio.h> #include <stdint.h> // StdPeriph Lib + CMSIS #include <stm32f4xx.h> #include <stm32f4xx_i2c.h> #include "eeprom.h" /* ------------- DEFINES ------------------ */ // Timeout und E2PROM Adresse #define I2C_TIMEOUT_MAX 10000 #define MEM_DEVICE_WRITE_ADDR 0xA0
in „STM32F4xx: 24LC512 EEPROM Zugriffsroutinen“ · Projekte & Code ·
-
Datei
usart_stm32f4xx.c
/* * usart_stm32f4xx.c * * USART/UART-Treiber * * $Date: 2019-03-24 09:25:14 +0100 (So, 24 Mrz 2019) $ * $Revision: 578 $ * * 15.05.2019 Nicolas */ #ifdef STM32F4XX #include "usart.h" #include "hw_config.h" #include
in „STM32: Sendepuffer für USART“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
eeprom.c
include <stdio.h> #include <stdint.h> // StdPeriph Lib + CMSIS #include <stm32f4xx.h> #include <stm32f4xx_i2c.h> #include "eeprom.h" /* ------------- DEFINES ------------------ */ // Timeout und E2PROM Adresse #define I2C_TIMEOUT_MAX 10000 #define MEM_DEVICE_WRITE_ADDR 0xA0
in „Organisation der Header und Includes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f7xx_hal_ltdc.c
/** ****************************************************************************** * @file stm32f7xx_hal_ltdc.c * @author MCD Application Team * @version V1.0.1 * @date 25-June-2015 * @brief LTDC HAL module driver. * This file provides firmware functions to manage the following * functionalities
in „STM32F7 Disco und das Display-->hard fault error“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usart_stm32f4xx.c
/* * usart_stm32f4xx.c * * USART/UART-Treiber * * $Date: 2019-03-24 09:25:14 +0100 (So, 24 Mrz 2019) $ * $Revision: 578 $ * * 15.05.2019 Nicolas */ #ifdef STM32F4XX #include "usart.h" #include "hw_config.h" #include
in „STM32: Sendepuffer für USART“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usbStefan_Aenderung.c
COM Port betreiben */ #include "usb.h" /* For devices with 2 x 16 bits / word access schema (e.g. STM32L0, STM32F303xD and xE) */ //#define UMEM_SHIFT 0 //#define UMEM_FAKEWIDTH word /* For devices with 1 x 16 bits / word access schema (e.g. STM32F103, STM32F302, STM32F303xB and xC) */ #define UMEM_SHIFT 1 #define UMEM_FAKEWIDTH dword /* The name of the IRQ handler must match startup_stm32.s */ #define NAME_OF_USB_IRQ_HANDLER USB_LP_CAN_RX0_IRQHandler /* Take the number from the reference manual of your µC. */ #define USB_IRQ_NUMBER 20 // Enable trace messages #define ENABLE_TRACING
in „USB CDC von Stefan Frings und WS“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
twi_main.c
#include "twi_main.h" #include "../Std_lib/stm32f10x_i2c.h" #include "../Std_lib/stm32f10x_tim.h" #include "../lib/outpin.h"//debugging #include "../Std_lib/misc.h" //für NVIC #include "../Std_lib/stm32f10x_rcc.h" volatile unsigned char maxID =
in „stm32 Cortex I2C : Master zieht SCL auf Masse“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f10x_it.c
***************************************************************** * @file OptimizedI2Cexamples/src/stm32f10x_it.c * @author MCD Application Team * @version V4.0.0 * @date 06/18/2010 * @brief Main Interrupt Service Routines. * This file provides template for all exceptions handler and * peripherals interrupt
in „stm32 Cortex I2C : Master zieht SCL auf Masse“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f10x_it.c
***************************************************************** * @file OptimizedI2Cexamples/src/stm32f10x_it.c * @author MCD Application Team * @version V4.0.0 * @date 06/18/2010 * @brief Main Interrupt Service Routines. * This file provides template for all exceptions handler and * peripherals interrupt
in „Cortex I2C zu kurze Impulsdauer“ · 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 ·
-
PDF
bom-v1-0.pdf
0,10 € 0,20 € C23 11µF KEM X5R0805 1,0U 0,07 € 0,07 € C24 110nF X7R-G0805 10N 0,04 € 0,04 € C25 1470nF KEM X7R0805 470N 0,07 € 0,07 € C130 14.7µF KEM X5R0805 4,7U 0,10 € 0,10 € C66 04.7µF only for STM32F4, F7 or H7 KEM X5R0805 4,7U 0,10 € 0,00 € C71 04.7µF only for STM32H7 KEM X5R0805 4,7U 0,10 € 0,00 € C67, C68 222pF KEM C0G0805 22P 0,04 € 0,08 € C69, C70 24,7pF NPO-G0805 4,7P 0,04 € 0,08 € C120, C121 2100µF 1206 X5R-G1206 100/6
in „Universalplatine für STM32, grobe Fehler vor der Herstellung?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
schema_stm32_primer2_1_2.PDF
/TRACED0/FSMC_A19 3 JOYSTICK_R AUDIO_SPI_MISO 53 PB13/SPI2_SCK PE4/TRACED1/FSMC_A20 4 JOYSTICK_U AUDIO_I2S2_SD 54 PB14/SPI2_MISO PE5/TRACED2/FSMC_A21 5 JOYSTICK_D VBAT_STM32 PB15/SPI2_MOSI PE6/TRACED2/FSMC_A22
in „STM32 USB Virtual COM Port“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
P-145-E-04-2014-v1_ST_Wireless_Connectivity.pdf
commands.The modules are configured around a single-chip 802.11 transceiver with integrated PA and an STM32 32-bit microcontroller with effective way to use the modules via AT commands.The modules are configured around a extsingle-chip 802.11 transceiver with integrated PA and an STM32 32-bit microcontroller
in „Wlan2Serial Modul für 5 euro“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <stm32f4xx_gpio.h> #include <stm32f4xx_rcc.h> #include <stm32f4xx_tim.h> #include <stm32f4xx_exti.h> #include <stm32f4xx_syscfg.h> #include <misc.h> GPIO_InitTypeDef GPIO_InitStructure; TIM_TimeBaseInitTypeDef
in „STM32 - Problem beim Compilieren mit CooCox ([cc] collect2.exe: error: ld returned 1 exit status)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
**** */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" /** @addtogroup STM32F10x_StdPeriph_Examples * @{ */ /** @addtogroup TIM_Input_Capture * @{ */ /* Private typedef -----------------------------------------------------------*/ /* Private define
in „Timer/Counter STM32“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsndconfig.h
#define IRSND_SUPPORT_LEGO_PROTOCOL 0 // LEGO Power RC >= 20000 ~150 bytes #define IRSND_SUPPORT_RCMM_PROTOCOL 0 // RCMM 12,24, or 32 >= 20000 DON'T CHANGE, NOT SUPPORTED YET! #define IRSND_SUPPORT_LGAIR_PROTOCOL 0 // LG Air Condition >=
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
PDF
LoRa-E5moduledatasheet_V10.pdf
LoRa-E5 LoRa Wireless Module - Powered by STM32WE5 Datasheet V1.0 © 2008-2020 Seeed Technology Co., Ltd. Allwww.seeedstudio.com Content Content.....................................................................................................
in „Birulki: Linux am ESP32, Arduino-USB PD-Netzteil, ESP 32-Spielkonsole.“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
catalog.pdf
[Desc]: 68uH inductor Integrated Circuits (ICs) Page 38/87 Bauteileliste vom 12.08.2022 MPN: STSPIN32F0 [ID]: 000032 [Price]: 4.9 USD [QTY]: 2 [Category]: Integrated Circuits (ICs) [Desc]: Advanced BLDC controller with embedded STM32 MCU, -40°C to 125°C, VFQFPN-48, RoHS MPN: DRV8818PWPR [ID]: 000037
-
PDF
catalog.pdf
: Microcontrollers [Desc]: In a Pack of 5, Microchip, 8bit AVR Microcontroller, 20MHz, 4 kB Flash, 32-Pin TQFP MPN: STM32F030C8T6TR [ID]: 000168 [Price]: 2.48 USD [QTY]: 20 [Category]: Microcontrollers [Desc]: Mainstream ARM Cortex-M0 Value line MCU with 64 Kbytes Flash, 48 MHz CPU MPN: STM32F103RBT6
-
Datei
STM32F4_lcd.c
werden: #define PRO_ZEILE 20 // fuer Anzeige 4x20 //#define PRO_ZEILE 16 // fuer Anzeige 4x16 #include "stm32f4xx.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #define LCD_CMD GPIO_Pin_9 // 0 = CMD, 1 = Zeichenausgabe #define LCD_READ GPIO_Pin_10 // 0 = Schreiben, 1 = Status lesen #define LCD_STROBE
in „Frequenz- und Pulsweitenmessung mit STM32F407“ · Projekte & Code ·
-
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
one_wire.c
Groppe * pic-projekte.de/Download/1-Wire-Projekt-V1_3.pdf * * Umgeschrieben zur Verwendung auf dem STM32F4 Discovery * * von Malte Becker * Projekt-Seminar WS 12/13 */ // Includes #include "stm32f4xx.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "global_variables.h" // Sensor-Konfiguration
in „1-Wire Stm32f4discovery“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irmp.h
IRMP_PORT_LETTER) # define IRMP_BIT IRMP_BIT_NUMBER # define input(x) ((x) & (1 << IRMP_BIT)) #elif defined (PIC_C18) || defined (PIC_CCS) # define input(x) (x) #elif defined (ARM_STM32) # define _CONCAT(a,b) a##b # define CONCAT(a,b) _CONCAT(a,b) # define IRMP_PORT CONCAT(GPIO, IRMP_PORT_LETTER) # if defined (ARM_STM32L1XX) # define IRMP_PORT_RCC CONCAT(RCC_AHBPeriph_GPIO, IRMP_PORT_LETTER) # elif defined (ARM_STM32F10X) # define IRMP_PORT_RCC CONCAT(RCC_APB2Periph_GPIO, IRMP_PORT_LETTER) # elif defined (ARM_STM32F4XX) # define IRMP_PORT_RCC CONCAT(RCC_AHB1Periph_GPIO, IRMP_PORT_LETTER) # endif # define IRMP_BIT
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·