-
Datei
spiGeneric.h
only fill as much data to the outgoing buffer as there is space in the incoming buffer too. For the STM32F411, according to the datasheet there the buffers seems to support only one element. For the STM32L452, the datasheet mentions 32bit of FIFO. This should be 4x 8bit data. As result, there will be an interruption for the STM32F411 between one byte sent and the next one put into the TX buffer, whereas the STM32L452 could work without interruption and reach the maximum possible SPI speed. */ size_t inQueue = 0; const size_t
in „STM32: SPI - HAL durch eigenen code ersetzen“ · 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
stm32f4xx_it.h
//=========================================================================== // stm32f4xx_it.h //=========================================================================== /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F4xx_IT_H #define __STM32F4xx_IT_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx.h" /* Exported types --------------------------
in „STM32: Drama mit "Hard Fault Error"“ · 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 "stm32f4xx.h" #include "system_stm32f4xx.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_dma.h" #include "stm32f4xx_gpio.h" #include "misc.h" #include "uart.h" #include "timer.h" #include "adc.h" #include
in „Assembler aufrufen aus C (ARM STM32)“ · 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
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 ·
-
Datei
main.cpp
#include <xpcc/architecture.hpp> #include <stdint.h> #include <xpcc/workflow.hpp> typedef xpcc::stm32::SpiMaster3 MySpi3; GPIO__OUTPUT(MPL115A1_CS, B, 5); static bool initClock() { xpcc::stm32::Clock::enablePll(xpcc::stm32::Clock::PLL_HSI, 8, 168); return xpcc::stm32::Clock::switchToPll(); } MAIN_FUNCTION { initClock(); xpcc::stm32::SysTickTimer::enable(); MPL115A1_CS::setOutput(true); MySpi3::initialize(MySpi3::MODE_0, MySpi3::PRESCALER_256); MySpi3::configurePins(MySpi3::REMAP_PC10_PC11_PC12); while (1) { MPL115A1_CS::setOutput
in „MOSI-Pegel viel zu niedrig, aber warum?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
adc.h
#ifndef STM32F1_ADC_H_ #define STM32F1_ADC_H_ /* ########################################################################################################################################################## */ /*
in „STM32F103 und ADC DMA mehrere Kanäle“ · Mikrocontroller und Digitale Elektronik ·
-
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
main.c
#include "stm32f2xx.h" #include "stm32_eval.h" void DMA_Config(void); void UART_vINIT(void); void NVIC_Configuration(void); uint16_t USART_Buffer_Tx[2]; uint16_t USART_Buffer_Rx[2]; void DMA1_Stream1_IRQHandler(void
in „STM32F207: USART + DMA“ · 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
C-Aktuell_14_07.txt
#include <stm32f10x_lib.h> // STM32F10x Library Definitions #include "STM32_Init.h" // STM32 Initialization int temp; int s; //schwarz int sz; //schwarz zucker int w; //weiß int wz; //weiß zucker int kg; //kaffee
in „Funktionsaufruf ARM“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f10x_it.c
**** */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x_it.h" /** @addtogroup STM32F10x_StdPeriph_Examples * @{ */ /** @addtogroup TIM9_OCToggle * @{ */ /* Private typedef -----------------------------------------------------------*/ /* Private define
in „STM32 - Eclipse, ARM GCC - Funktionsaufruf geht nicht :-(“ · 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 ·
-
Datei
button.c
#include "stdio.h" #include "System/System.h" #include "misc.h" #include "stm32f10x_tim.h" #include "stm32f10x_usart.h" #include "stm32f10x_rtc.h" #include "stm32f10x_rcc.h" #include "stm32f10x_exti.h" #include "USART1.h" #include "config_gpio.h" void BUTTON_Init(){ GPIO_InitTypeDef
in „STM32 Input Pin Logic Level nicht erkannt“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Text über CircuitPython Port-Status und Implementierungen
Issues below): atmel-samd : Microchip SAMD21, SAMx5x cxd56 : Sony Spresense esspressif : Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6 nordic : Nordic nRF52840, nRF52833 raspberrypi : Raspberry Pi RP2040 stm : ST STM32F4 chip family These ports are considered alpha and will have bugs
in „Neue Chips, Ubuntu Server für RISC-V, Nachrichten im Hause CircuitPython uvam“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
disco.txt
FMC_SDRAM_CLOCK_PERIOD_2 FMC.SDClockPeriod2=FMC_SDRAM_CLOCK_PERIOD_2 File.Version=6 KeepUserPlacement=true Mcu.Family=STM32F4 Mcu.IP0=FMC Mcu.IP1=NVIC Mcu.IP2=RCC Mcu.IP3=SDIO Mcu.IP4=SYS Mcu.IPNb=5 Mcu.Name=STM32F429ZITx Mcu.Package=LQFP144 Mcu.Pin0=PF0 Mcu.Pin1=PF1 Mcu.Pin10=PF14 Mcu.Pin11=PF15 Mcu.Pin12=PG0 Mcu.Pin13
in „FMC auf STM32F4 konfigurieren?“ · 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
main.c
/* * main.c * * Created on: 24.10.2010 * Author: Oliver Behr */ #include "stm32f10x.h" /* Super-Master-Header for STM32 */ #include "stm32f10x_it.h" /* Interrupt handlers */ #include "stm32f10x_conf.h" #include "configuration.h" extern uint32_t _isr_vectorsflash_offs; int main(void) { NVIC_SetVectorTable(NVIC_VectTab_FLASH, (uint32_t)&_isr_vectorsflash_offs); uint32_t i = 4; while (1) { i++; } return 0; }
in „Nicht genutzte globale Variablen werden wegoptimiert“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
howto.txt
Für das Shield mit dem STM32 MiniDevBoards Vorbereitung Windows PC > das STM32MiniBoard auch über UART geflashed werden. > Die Software für das Flashen über UART wird auch zum Aufspielen der ESP8266 Firmware des WLAN-Moduls benötigt
-
Datei
miclog.txt
GDI Reg[11]: name=NB_INST_MAX ID=11 flag=0 NB_INST_MAX register not supported by GDI DiGdiSetConfig(STM8S105C6) chip_config_t::SetCurrentMcu(STM8S105C6) InitDaoAccess() m_sDbFileName = C:\Programme\STMicroelectronics\st_toolset\stvd\swim\config\swim_conf.mdb chip_config_t::TraceDumpContent() m_ConfigAlreadySet
in „STM8S-Testboard“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f10x_it.h
**** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F10x_IT_H #define __STM32F10x_IT_H /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" /* Exported types ----------------------------------------
in „STM32 - Eclipse, ARM GCC - Funktionsaufruf geht nicht :-(“ · 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
stm32f10x_it.h
**** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F10x_IT_H #define __STM32F10x_IT_H /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" /* Exported types ----------------------------------------
in „stm32 Cortex I2C : Master zieht SCL auf Masse“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
main.c ** ** Abstract : main function. ** ** Functions : main ** ** Environment : Atollic TrueSTUDIO/STM32 ** STMicroelectronics STM32F10x Standard Peripherals Library ** ** Distribution: The file is distributed �as is,� without any warranty ** of any kind. ** ** (c)Copyright Atollic AB. ** You may use
in „Konfiguration eines Timers auf dem STM32F100RB6“ · 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
============== - 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
stm32f10x_it.h
/h2> */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F10x_IT_H #define __STM32F10x_IT_H /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" /* Exported types ----------------------------------------
in „Cortex I2C zu kurze Impulsdauer“ · 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_SendByte(wert); // hier Code einfügen
in „STM32F429 - kein Takt am SPI“ · 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
debounce.c
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> // for cli() and sei() #include <util/atomic.h
-
PDF
STMxx-Discovery-Versaloon-How2-pict.pdf
The finished STM8S SWD debugger Blue wires on JTAG , and SWDwires on CN7 Purple = SWDIO - Green = GND – White= SWCLK And the STM32VL end of the wires from the STM8S above Here i haven't modified the STM32VL , and is
in „Use your STMxx-Discoveryboard as JTAG (SWD)“ · 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
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 ·
-
Datei
main.c
Timebase.h" #include "UITask.h" #include "MCLibraryISRPriorityConf.h" #include <stdio.h> #include "stm32_eval.h" #if defined USE_STM3210E_EVAL #warning "If using STM3210E-EVAL, please be informed that - on that board - PA6 is shared between TIM8 BKIN and SPI1 MISO, which means that it s not possible
in „STM32F4 - CAN1 empfängt nichts“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
reference_manual.pdf
RM0008 Reference manual STM32F101xx, STM32F102xx, STM32F103xx, STM32F105xx and STM32F107xx advanced ARM-based 32-bit MCUs Introduction This reference manual targets application developers. It provides complete information on how to use the STM32F101xx, STM32F102xx, STM32F103xx and STM32F105xx/STM32F107xx microcontroller memory and peripherals. The STM32F101xx, STM32F102xx, STM32F103xx and STM32F105xx/STM32F107xx will be referred to as STM32F10xxx
in „I2S zwischen STM32F103RET6 und PCM3168A möglich?“ · 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 ·
-
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 ·
-
Datei
blinky_bluepill.ino
/* STM32 BluePill blinky Funktioniert mit einem unveränderten BluePill und ST-Link Programmierung. Auf den Pins PA0 bis PA12, PA15 und PB0 bis PB1, PB3 bis PB15 und PC13 bis PC15. Nur PB13 hat noch Einschränkungen. Vorraussetzung ist Arduino 1.8.5 in Voreinstellung eingetragen: https://github.com/stm32duino/BoardManagerFiles/raw/master/STM32/package_stm_index.json und mit dem Boardverwalter (Boardmanager) dann dazugeladen: STM32 Cores by ST-Microelektronics Version 1.3.0 */ #define LED_PCB PC13
in „stm32f103-bluepill-peripherie“ · 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
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
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> #include <math.h> void init_Timer(void)
in „stm32f030f4p6 PWM“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <stm32f10x.h> #include <stm32f10x_conf.h> #include <stm32f10x_rcc.h> #include <stm32f10x_gpio.h> #include <misc.h> //#include <stm32f10x_i2c.h> #include <stm32f10x_tim.h> #define xF_DELAY 6536//72MHZ #define zucSTM 1 #include "C:\zuc\start\defines.h" #define led1_port C #define led1_pin 13 #ifdef led1_port #define led1_off pinSET(led1_port,led1_pin) #define led1_on pinCLR(led1_port,led1_pin) #define led1_tog pinTOG
in „stm32f103 3phase-generator“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/h2> */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" #include "stm32_eval_sdio_sd.h" /** @addtogroup STM32F10x_StdPeriph_Examples * @{ */ /** @addtogroup SDIO_Example * @{ */ /* Private typedef ------------------------------------------------
in „STM3210E EVAL SD-Controller SDIO + HiTOP“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Balkendiagramm der CoreMark-Leistung von Arm Cortex-M7 Mikrocontrollern
@ 480 MHz Arm Cortex-M7 @ 550 MHz Arm Cortex-M7 @ 600 MHz Dual core lines Arm Cortex-M4 @ 240 MHz STM32F7 STM32H7 STM32H7 STM32H7 Arm® Cortex®-M7 @ 600 MHz Double precision FPU, MPU, advanced DSP 32 Kbytes + 32 Kbytes L1 I/D allowing zero wait-state execution from external memories 620 Kbytes of SRAM
in „Neue STM32H7-Variante, Eclipse-Daten zur IoT-Adoption und neue Kameras“ · Mikrocontroller und Digitale Elektronik · · Diagramme
-
Datei
compiler_options.txt
fpv4-sp-d16" /> <Add option="$stack=0x0100" /> <Add option="$heap=0x0000" /> <Add option="$lscript=./stm32f446ze_flash.ld" /> </Device> <Compiler> <Add option="-mfloat-abi=hard" /> <Add option="-fno-strict-aliasing" /> <Add symbol="ARM_MATH_CM4" /> <Add symbol="__FPU_USED" /> <Add symbol="STM32F446ZE" /> <Add symbol="STM32F4XX" /> <Add symbol="USE_STDPERIPH_DRIVER" /> <Add directory=".\inc" /> <Add directory=".\src" /> <Add directory=".\cmsis" /> <Add directory=".\SPL\inc" /> <Add directory=".\SPL\src" /> </Compiler
in „Böse Falle Boolean“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsnd.h
#include "irmpsystem.h" #ifndef IRSND_USE_AS_LIB # include "irsndconfig.h" #endif #if defined (ARM_STM32) // STM32 # define _CONCAT(a,b) a##b # define CONCAT(a,b) _CONCAT(a,b) # define IRSND_PORT CONCAT(GPIO, IRSND_PORT_LETTER) # if defined (ARM_STM32L1XX) # define IRSND_PORT_RCC CONCAT(RCC_AHBPeriph_GPIO
in „IR Fernbedienung mit IRSND“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb_vcp.c
chip 3. VCP params VCP_NUM_PORTS <1..4> not yet implemmented -> EP1..EP4 */ // <h> Configuration for STM bare metal VCP // <h> CORE params // <o> UMEMSHIFT <0=> off // <1=> on // <i> Off for devices with 2 x 16 bits / uint16_t access schema // <i> e.g. STM32L0x2, STM32L0x3, STM32F0x2, STM32F303xD and xE // <i> On for devices with 1 x 16 bits / uint16_t access schema // <i> e.g. STM32F103, STM32F302, STM32F303xB and xC // ********************************************************* #define UMEM_SHIFT 1 // ********************************************************* // <o> USB_IRQ_NUMBER
in „STM32 USB Übertragungsproblem mit Code von S.F.“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
sammelbestellung.pdf
und Treiber 8 - 45V 7.0A 1/128 Microstepping SPI RoHS: RoHS-konform 12,27 € 12,27 € Mouser-Nr.: 511-STM32F4DISCOVERY 1 Verfügbarkeit Herst.- Nr.: STM32F4DISCOVERY Hersteller: STMicroelectronics 1 Versand sofort Beschr.: Entwicklungsboards und Kits - ARM STM32F407 HIGH PERF DISCOVERY BOARD RoHS: RoHS-konform 8,87 € 8,87 € Mouser-Nr.: 511-STM32F3DISCOVERY 1 Verfügbarkeit Herst.- Nr.: STM32F3DISCOVERY 0 Versand sofort Hersteller: STMicroelectronics 1 Im Lieferrückstand Beschr.: Entwicklungsboards und Kits - ARM STM32F3 Discovery 32-Bit ARM