-
Datei
stm32_flash.ld
/* ***************************************************************************** ** ** File : stm32_flash.ld ** ** Abstract : Linker script for STM32F100VB Device with ** 128KByte FLASH, 8KByte 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 ** ** Environment : Atollic TrueSTUDIO(R) ** ** Distribution: The file is distributed as is, without any warranty ** of any kind. ** ** (c)Copyright Atollic AB. ** You may use this file as-is or modify
in „STM32 Yagarto Intel Hex File“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_flash.ld
/* ***************************************************************************** ** ** File : stm32_flash.ld ** ** Abstract : Linker script for $(DEVICE) Device with ** $(FLASH_LENGTH)Byte FLASH, $(RAM_LENGTH)Byte RAM ** ** Set heap size, stack size and stack location according ** to application
in „doppelte deklaration einer funktion“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_flash.ld
/* ***************************************************************************** ** ** File : stm32_flash.ld ** ** Abstract : Linker script for STM32F207 Device with ** 1MByte FLASH, 128KByte SRAM ** ** Set heap size, stack size and stack location according ** to application requirements. ** ** Set
in „STM32 FreeRTOS Projekt (Makefile - GCC)“ · Projekte & Code ·
-
Datei
stm32_flash.ld
/* ***************************************************************************** ** ** File : stm32_flash.ld ** ** Abstract : Linker script for STM32F103RB Device with ** 128KByte FLASH, 20KByte 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 ** ** Environment : Atollic TrueSTUDIO(R) ** ** Distribution: The file is distributed as is, without any warranty ** of any kind. ** ** (c)Copyright Atollic AB. ** You may use this file as-is or modify
in „STM32: Jeder Interrupt landet im Default_Handler“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_flash.ld
/* ***************************************************************************** ** ** File : stm32_flash.ld ** ** Abstract : Linker script for STM32F407VE Device with ** 512KByte FLASH, 192KByte 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 ** ** Environment : Atollic TrueSTUDIO(R) ** ** Distribution: The file is distributed �as is,� without any warranty ** of any kind. ** ** (c)Copyright Atollic AB. ** You may use this file as-is or
in „STM32F4 C++ springt bei __libc_init_array in den HardFault“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_flash.ld
/* ***************************************************************************** ** ** File : stm32_flash.ld ** ** Abstract : Linker script for STM32F103ZE Device with ** (hihi geändert:) 512KByte FLASH, 64KByte RAM ** ** Set heap size, stack size and stack location according ** to application requirements
in „STM32F103 - Sourcery - Eclipse“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_flash.ld
/* * STM32 Discovery Linker Script */ _estack = 0x20002000; /* global needed for startup_stm3210x_md_vl.S */ _minimum_stack_size = 0x100; /* 256 bytes miniumum stack size */ ENTRY(Reset_Handler) MEMORY { rom
in „STM32-Discoveryboard: FTDI Treiber/OpenOCD/Degugging“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_Init.c
--------------------------------------*/ void stm32_Init () { #if __EFI_SETUP stm32_EfiSetup (); #endif #if __CLOCK_SETUP stm32_ClockSetup (); #endif #if __NVIC_SETUP stm32_NvicSetup (); #endif #if __SYSTICK_SETUP stm32_SysTickSetup (); #endif #if __RTC_SETUP stm32_RtcSetup (); #endif #if __TIMER_SETUP stm32_TimerSetup (); #endif #if __AFREMAP_SETUP stm32_AfRemapSetup (); #endif #if __GPIO_SETUP stm32_GpioSetup (); #endif #if __USART_SETUP stm32_UsartSetup();
in „ARM STM32 Eingänge werden nicht erkannt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_Init.c
--------------------------------------*/ void stm32_Init () { #if __EFI_SETUP stm32_EfiSetup (); #endif #if __CLOCK_SETUP stm32_ClockSetup (); #endif #if __NVIC_SETUP stm32_NvicSetup (); #endif #if __SYSTICK_SETUP stm32_SysTickSetup (); #endif #if __RTC_SETUP stm32_RtcSetup (); #endif #if __TIMER_SETUP stm32_TimerSetup (); #endif #if __AFREMAP_SETUP stm32_AfRemapSetup (); #endif #if __GPIO_SETUP stm32_GpioSetup (); #endif #if __USART_SETUP stm32_UsartSetup();
in „ARM STM32 Eingänge werden nicht erkannt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32-gpio.h
#ifndef __STM32_GPIO_H #define __STM32_GPIO_H #ifdef __cplusplus extern "C" { #endif enum { GPIO_Input_Analog = (0<<2), GPIO_Input_Floating = (1<<2), GPIO_Input_Pullupdown = (2<<2), }; enum { GPIO_Output_PushPull
in „STM32 ST-Library Pro oder Kontra“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32-gpio.c
#include "config.h" #include "stm32/stm32-gpio.h" static unsigned gpio_config_half(unsigned cfreg, unsigned bits, unsigned cnfmode) { for (int i = 0; i < 8; ++i) if (bits & (1 << i)) cfreg = (cfreg & ~(0xF << (4*i))) | (cnfmode << (4
in „STM32 ST-Library Pro oder Kontra“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_Startup.s
/***************************************************************************** * Copyright (c) 2007, 2009 Rowley Associates Limited. * * * * This file may be distributed under the terms of the License Agreement * * provided with this software. * * * * THIS FILE IS PROVIDED AS IS WITH NO WARRANTY OF ANY KIND, INCLUDING THE * * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * *****************************************************************************/ /***************************************************************************** * Preprocessor Definitions * ---------
in „(Speicher?-) Problem mit STM32 + VCP“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_eeprom.c
#include <stdio.h> #include <string.h> #include "stm32f10x_usart.h" #include "stm32f10x_flash.h" #include "misc.h" #include "stm32_eeprom.h" /***************************************************************************** * Allows to use the internal flash
in „Daten ins Flash speichern mit dem STM32“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_eeprom.h
#ifndef UC_MEMORY_H #define UC_MEMORY_H // CAN BE CHANGED #define FEE_DENSITY_PAGES 4 // how many pages are used #define FEE_PAGE_SIZE 1024 // can be 1k or 2k check manual for used device #define FEE_PAGE_BASE_ADDRESS 0x0801F000 // select first Page address on the top of flash // DONT CHANGE #define FEE_DENSITY_BYTES ((FEE_PAGE_SIZE / 2) * FEE_DENSITY_PAGES - 1) #define FEE_LAST_PAGE_ADDRESS (FEE_PAGE_BASE_ADDRESS + (FEE_PAGE_SIZE * FEE_DENSITY_PAGES)) #define FEE_EMPTY_WORD ((uint16_t)0xFFFF) #define FEE_ADDR_OFFSET(Address)(Address * 2) // 1Byte per Word will be saved to preserve Flash // use
in „Daten ins Flash speichern mit dem STM32“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_eeprom.c
#include <stdio.h> #include <string.h> #include "stm32f10x_usart.h" #include "stm32f10x_flash.h" #include "misc.h" #include "stm32_eeprom.h" /***************************************************************************** * Allows to use the internal flash
-
Datei
stm32_eeprom.h
#ifndef UC_MEMORY_H #define UC_MEMORY_H // CAN BE CHANGED #define FEE_DENSITY_PAGES 4 // how many pages are used #define FEE_PAGE_SIZE 1024 // can be 1k or 2k check manual for used device #define FEE_PAGE_BASE_ADDRESS 0x0801F000 // select first Page address on the top of flash // DONT CHANGE #define FEE_DENSITY_BYTES ((FEE_PAGE_SIZE / 2) * FEE_DENSITY_PAGES - 1) #define FEE_LAST_PAGE_ADDRESS (FEE_PAGE_BASE_ADDRESS + (FEE_PAGE_SIZE * FEE_DENSITY_PAGES)) #define FEE_EMPTY_WORD ((uint16_t)0xFFFF) #define FEE_ADDR_OFFSET(Address)(Address * 2) // 1Byte per Word will be saved to preserve Flash // use
-
Datei
stm32_flash.ld
/* This will work with STM32 type of microcontrollers. * * The sizes of RAM and flash are specified smaller than * * what most of the STM32 provide to ensure that the demo * * program will run on ANY STM32. */ MEMORY { ram (rwx
in „STM32 - Fragen zum Einstieg“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_flash.ld
/* ***************************************************************************** ** ** File : stm32_flash.ld ** ** Abstract : Linker script for STM32L152RB Device with ** 128KByte FLASH, 16KByte 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 ** ** Environment : Atollic TrueSTUDIO(R) ** ** Distribution: The file is distributed as is, without any warranty ** of any kind. ** ** (c)Copyright Atollic AB. ** You may use this file as-is or modify
in „STM32L1 + Makefile. Linkerproblem?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_Init.c
_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
startup_stm32.s
** ****************************************************************************** * @file startup_stm32.s * @author Ac6 * @version V1.0.0 * @date 12-June-2014 ****************************************************************************** */ .syntax unified .cpu cortex-m3 .thumb .global g_pfnVectors .
in „stm32f103 RTC Interrupt öfter als erwartet“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32.s
** ****************************************************************************** * @file startup_stm32.s dedicated to STM32F303RETx device * @author Ac6 * @version V1.0.0 * @date 2019-03-03 ****************************************************************************** */ .syntax unified .cpu cortex-m4
in „An W.S.: Läuft deine USB Implementierung auch auf STM32F303?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32.s
** ****************************************************************************** * @file startup_stm32.s dedicated to STM32L073RZTx device * @author Ac6 * @version V1.0.0 * @date 2019-03-18 ****************************************************************************** */ .syntax unified .cpu cortex-m0plus
in „ARM Cortex M0+ Startupcode Minimal“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32.s
** ****************************************************************************** * @file startup_stm32.s dedicated to STM32F303RETx device * @author Ac6 * @version V1.0.0 * @date 2019-03-03 ****************************************************************************** */ .syntax unified .cpu cortex-m4
in „Timer Interrupt am STM32F103RB“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_TIMER.ino
#include "Arduino.h" #include "STM32_REGS.h" void setup() { *RCC_CFGR &= ~(0b1111 << PLLMUL); //pll*2 *RCC_CFGR |= (0b0101 << PLLMUL); *RCC_CFGR &= ~(1 << PLLSRC); //pll input source hsi/2 *RCC_CFGR |= (PLL_INPUT_HSI_HALF << PLLSRC);
in „STM32 Ratsuchend“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_REGS.h
/* * STM32_REGS.h * * Created on: 22.07.2019 * Author: Arndt */ #ifndef STM32_REGS_H_ #define STM32_REGS_H_ #include "Arduino.h" //Timer2 //CR1 const byte CEN = 0; const byte DIR = 4; volatile uint16_t* TIM2_
in „STM32 Ratsuchend“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32.s
** ****************************************************************************** * @file startup_stm32.s * @author Ac6 * @version V1.0.0 * @date 12-June-2014 ****************************************************************************** */ .syntax unified .cpu cortex-m3 .thumb .global g_pfnVectors .
in „Frage an W.S. wegen USB CDC Implementierung STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_flash.ld
/* Entry Point */ ENTRY(Reset_Handler) /* Highest address of the user mode stack */ _estack = 0x20005000; /* end of 20K RAM */ /* Generate a link error if heap and stack don't fit into RAM */ _Min_Heap_Size = 0; /* required amount of heap */ _Min_Stack_Size = 0x400; /* required amount of stack */ /* Specify the memory areas */ MEMORY { FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 63k EEPROM (rx) : ORIGIN = 0x0800fc00, LENGTH = 1K RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 20K MEMORY_B1 (rx) : ORIGIN = 0x60000000, LENGTH = 0K } /* Define output sections */ SECTIONS { /* The eeprom data goes into EEPROM
in „STM32: gcc 5.4.1 vs. 6.3.1 und memset“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32-pwm.c
/* USER CODE BEGIN Header */ /** ****************************************************************************** * @file : main.c * @brief : Main program body ****************************************************************************** * @attention * * <h2><center>© Copyright (c) 2021 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use this file except in compliance with the * License. You may obtain a copy of the License at: * opensource.org/licenses/BSD-3-Clause * *********************
in „PWM-Signal mit STM32 messen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
serial_stm32.h
/** @file serial_stm32.h serial interface header documentation */ #ifndef INC_SERIAL_STM32_H #define INC_SERIAL_STM32_H #include "stm32f4xx_hal.h" #include <stdint.h> #include <stdbool.h> #include "fifo_buffered.h" typedef
in „STM32 HAL UART Mysterium oder bin ich dumm?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
serial_stm32.c
/** @file serial_stm32.c @brief serial handling using CubeMx @platform developed on STM32F407 using ARM-CC @see for DMA receive see https://my.st.com/public/STe2ecommunities/mcu/Lists/STM32Java/Flat.aspx?RootFolder=https%3a%2f%2fmy.st.com%2fpublic%2fSTe2ecommunities%2fmcu%2fLists%2fSTM32Java%2fModifying%20STM32FCubeMX%20HAL%20Drivers%20for%20UART%20RX%20%28IT%20mode%29%20with%20unknown%20size%20data%20size&FolderCTID=0x01200200770978C69A1141439FE559EB459D758000F9A0E3A95BA69146A17C2E80209ADC21&
in „STM32 HAL UART Mysterium oder bin ich dumm?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32.s
** ****************************************************************************** * @file startup_stm32f10x_md.s * @author MCD Application Team * @version V3.1.2 * @date 09/28/2009 * @brief STM32F10x Medium Density Devices vector table for RIDE7 toolchain. * This module performs: * - Set the initial
in „Stm32 SystemInit() C++“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_flash.ld
/* ****************************************************************************** File: stm32_flash.ld Info: Generated by Atollic TrueSTUDIO(R) 9.0.1 2018-06-20 Abstract: Linker script for STM32F103C8 device Set heap size, stack size, stack location, memory areas and sections according to application
in „ST-Link Integration in TrueStudio Atollic“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_flash.ld
/* ***************************************************************************** ** ** File : stm32_flash.ld ** ** Abstract : Linker script for STM32F030K6 Device with ** 32KByte FLASH, 4KByte 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 ** ** Environment : Atollic TrueSTUDIO(R) ** ** Distribution: The file is distributed "as is", without any warranty ** of any kind. ** ** (c)Copyright Atollic AB. ** You may use this file as-is or
in „STM32 bleibt im mer beim "Reset_Handler" hängen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_rom.ld
/* Default linker script for STM32F10x_1024K_1024K Copyright RAISONANCE S.A.S. 2008 */ /* include the common STM32F10x sub-script */ /* Common part of the linker scripts for STM32 devices*/ /* default stack sizes. These are used by
in „STM32 Linker-Problem (overlaps section.) + Clock zu langsam?“ · 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 ·
-
PDF
STM32_Tomaten.pdf
STM32_Tomaten.pdf
in „Schaltplankontrolle - Tomatenbewässerung“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32_Tomaten.pdf
STM32_Tomaten.pdf
in „Schaltplankontrolle - Tomatenbewässerung“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32_SCH.pdf
42 4 5 C 13 OSC-OUT PE12 43 2 T6 FD2103S PE13 44 R6 PE14 45 NC PE15 1 2 1 3 STP110N7F6 73 46 120 STM32F103VD GND
-
PDF
STM32Tutorial.pdf
Hier eine kurze Anleitung zur Ergänzung des Artikels STM32 - Einstieg mit Em::Blocks auf Mikrocontroller.net http://www.mikrocontroller.net/articles/STM32_-_Einstieg_mit_Em::Blocks Inhalt: Schritte zur Erzeugung von *.hex / *.bin Dateien zum direkten Übertragen
in „Neues STM32 Tutorial“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Mehrere STMicroelectronics STM32 Discovery Boards in Verpackungen
STM32 F3 Discovery, STM32F4 Discovery, STM32L103 Discovery, STM32L476 Discovery, STM32L053 Discovery, ST
in „[V] Verschiedene STM32-Discovery“ · Markt · · Fotos
-
PDF
STN32F4DIS-EXT.pdf
STM32F4DIS-EXT Expansion boards for the STM32F4 Discovery kit Data brief Features • Base board: ™ – microSD card slot – 10/100 Ethernet with IEEE 1588v2 (RJ45 connector) – Connector for camera board – Connector
in „Neues Projekt - welcher µC?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
HAL_STM32F1.pdf
platform, delivered per Series (such as STM32CubeF1 for STM32F1) – The STM32Cube HAL, STM32 abstraction layer embedded software ensuring maximized portability across the STM32 portfolio. HAL APIs are available for all peripherals. – Low-layer
in „CAN auf STM32F4“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Code_Test_23062023.txt
mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F411xE -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares
in „DAC mit STM32CubeIDE und STM32F411CEU unter Linux“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
make_d_ohne_shEXE.txt
STM32F4_Edu.hex'. Pruning file `obj/STM32F4_Edu.elf'. Finished prerequisites of target file `obj/STM32F4_Edu.hex'. Prerequisite `obj/STM32F4_Edu.elf' is older than target `obj/STM32F4_Edu.hex'. No need to
in „Makefile STM32 Discovery“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
GxEPD_Example.ino
/ 7, /*RST=*/ 6); GxEPD_Class display(io, /*RST=*/ 6, /*BUSY=*/ 5); #elif defined(ARDUINO_GENERIC_STM32F103C) && defined(MCU_STM32F103C8) // STM32 Boards(STM32duino.com) Generic STM32F103C series STM32F103C8 // for SPI pin definitions see e.g.: // C:\Users\xxx\Documents\Arduino\hardware\Arduino_STM32\STM32F1\variants\generic_stm32f103c\variant.h // C:\Users\xxx\Documents\Arduino\hardware\Arduino_STM32\STM32F1\variants\generic_stm32f103c\board\board.h // new mapping suggestion for STM32F1, e.g. STM32F103C8T6
in „ESP8266 mit Waveshare 7,5" E-Paper - funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.cpp
#include "../Inc/main.hpp" feedback clocksInit() { CMOS& cmos = CMOS::get(); STM32F107RCT6& stm32 = STM32F107RCT6::get(); RCC& rcc = stm32.get_rcc(); // Set Clock HSE in RCC to a valid Value before setting the Clock Source of the PLL to HSE // Otherwise, RCC wont let us set PLL Source
in „STM32F107 Ethernet RMII“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LUHE_AD9650.h
#endif /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx.h" /** @addtogroup Utilities * @{ */ /** @addtogroup STM32F4_DISCOVERY * @{ */ /** @addtogroup STM32F429I_DISCOVERY * @{ */ /** @addtogroup STM32F429I_DISCOVERY_LOW_LEVEL * @{ */ /** @defgroup
in „AD9850 Steuerwort,Berechnung richtig?“ · HF, Funk und Felder ·
-
Datei
system_stm32f0xx.c
************************************************ */ /** @addtogroup CMSIS * @{ */ /** @addtogroup stm32f0xx_system * @{ */ /** @addtogroup STM32F0xx_System_Private_Includes * @{ */ #include "stm32f0xx.h" /** * @} */ /** @addtogroup STM32F0xx_System_Private_TypesDefinitions * @{ */ /** * @} */ /** @addtogroup STM32F0xx_System_Private_Defines * @{ */ /** * @} */ /** @addtogroup STM32F0xx_System_Private_Macros * @{ */ /** * @} */ /** @addtogroup STM32F0xx_System_Private_Variables * @{ */ uint32_t SystemCoreClock
in „uint16_t Division compilerabhängig? HardFault bei bestimmtem Compiler“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
MX Embedded Software Packages Manager Fenster
Version STM32Cube MCU Package for STM32F4 Series (Size : 149.93 MB) 1.3.0 STM32Cube MCU Package for STM32F4 Series 1.2.0 1.2.0 STM32Cube MCU Package for STM32F4 Series (Size : 149.28 MB) 1.1.0 STM32Cube MCU Package for STM32F4 Series 1.0.0 1.0.0 STM32F7 From Local ... From Url ... Refresh Install Remove Close
in „STM32CubeIDE: bekomme blinky läuft nicht“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
spi_stm32f4xx.c
"nstdlib.h" #include "wallclock.h" /** Auswahl SPI, Ports und Pins */ enum spi_hard_e { spi_hard_STM32F4XX_SPI1_PA5_PA6_PA7, spi_hard_STM32F4XX_SPI2_PB13_PB14_PB15, spi_hard_STM32F4XX_SPI3_PC10_PC11_PC12, }; /* In hw_config.h : */ #define SPI_HARD spi_hard_STM32F4XX_SPI1_PA5_PA6_PA7 //#define SPI_HARD spi_hard_STM32F4XX_SPI3_PC10_PC11_PC12 #if defined( STM32F4XX ) #include "stm32f4xx_rcc.h" #include "stm32f4xx_spi.h" /** Globale Variablen ************************************************************************
in „ST32F4xx SPI1 DMA funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·