-
Datei
pcf8574.c
#include <stm32f10x.h> #include <stm32f10x_i2c.h> #include "pcf8574.h" #define PCF8574_I2Cx_RCC RCC_APB1Periph_I2C1 #define PCF8574_I2Cx I2C1 #define PCF8574_I2C_GPIO_RCC RCC_APB2Periph_GPIOB #define PCF8574_I2C_GPIO GPIOB #define PCF8574_I2C_PIN_SCL GPIO_Pin_6 #define PCF8574_I2C_PIN_SDA GPIO_Pin_7 #define PCF8574_I2C_ADDR 0x20 void pcf8574_write(uint8_t data) { pcf8574_i2c_start(); pcf8574_i2c_address_direction(PCF8574_I2C_ADDR << 1, I2C_Direction_Transmitter); pcf8574_i2c_transmit(data); pcf8574
in „STM32 I2C Probleme mit PCF8574“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lwipopts.h
configuration for the STM32F4x7 demonstration. ****************************************************************************** * @attention * * <h2><center>© COPYRIGHT 2013 STMicroelectronics</center></h2> * * Licensed under
in „LwIP Sockets API vs. Raw API vs. uIP Stack“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32f10x_cl.s
/** ****************************************************************************** * @file startup_stm32f10x_cl.s * @author MCD Application Team * @version V3.3.0 * @date 04/16/2010 * @brief STM32F10x Connectivity line Devices vector table for RIDE7 toolchain. * This module performs: * - Set the initial
in „STM32 Rücksprung defekt von IRQ“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32f40xx.S
/** ****************************************************************************** * @file startup_stm32f40_41xxx.s * @author MCD Application Team * @version V1.2.1 * @date 19-September-2013 * @brief STM32F40xxx/41xxx Devices vector table for Atollic TrueSTUDIO toolchain. * Same as startup_stm32f40_41xxx.s
in „STM32 - Fragen zum Einstieg“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb.c
/* ST STM32F103C8T6: USB als COM Port betreiben */ #include "StdTypes.h" #include "STM32F103all.h" #include "usb.h" /* die Transfer-Puffer für zeichenweises In und Out über den USB */ #define txLen 256 char UsbTxBuf
in „USB CDC von Stefan Frings und WS“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32H743ZI_FLASH.ld
/* ***************************************************************************** ** ** File : stm32_flash.ld ** ** Abstract : Linker script for STM32H743ZI Device with ** 2048KByte FLASH, 1056KByte 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 „Wie speichere ich große Arrays in STM32?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
xpt2046.c
/* * xpt2046.c * * Created on: Jul 21, 2018 * Author: Dimitris Tassopoulos */ #include "xpt2046.h" #include "stm32f10x_gpio.h" #include "stm32f10x_exti.h" #define XPT2046_IRQ_PIN GPIO_Pin_8 #define XPT2046_IRQ_PORT GPIOA static struct dev_spi gspi; static struct dev_spi * m_spi = &gspi; static struct
in „C Code Verständnis Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
BLDCMotorControlTimer.c
#include "stm32f4xx.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_tim.h" #include "misc.h" #include "stm32f4xx_gpio.h" #include <stdbool.h> void enableHallCommutateSignal(); void configMotorBridgeTimer(void)
in „STM32F4 BLDC mit Hall Sensoren“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
spi-L431.h
// spi.h // Source: stm32l431xx.h V1.7.3 2023-06-07 by MCD Application Team // * Copyright (c) 2017 STMicroelectronics. // * All rights reserved. // * // * This software is licensed under terms that can be found
in „STM32: SPI - HAL durch eigenen code ersetzen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/************************* * stm32 uart main.c *************************/ #include "stm32f10x.h" #include "print.h" /* User defined function prototypes */ void GPIOB_Init(void); void USART1_Init(void); int main(void) { SystemInit()
in „STM32F103: bei UART1 remapped funktioniert der UART1 Interrupt nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f10x_conf.h" #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #define TFT_RS_PIN GPIO_Pin_10 #define TFT_RS_GPIO_PORT GPIOB #define TFT_RS_GPIO_CLK RCC_APB2Periph_GPIOB #define TFT_RS_HIGH()
in „STM32 + SSD1289“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f10x_conf.h" #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #define TFT_RS_PIN GPIO_Pin_10 #define TFT_RS_GPIO_PORT GPIOB #define TFT_RS_GPIO_CLK RCC_APB2Periph_GPIOB #define TFT_RS_HIGH()
in „STM32 + SSD1289“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2croutines.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 __I2CROUTINES_H #define __I2CROUTINES_H /* Includes ------------------------------------------------------------------*/ #include "../boot/stdint.h" #include "../Std_lib/stm32f10x_conf.h" /* Exported types ------------------------------------------------------------*/ /* Exported constants --------------------------------------------------------
in „stm32 Cortex I2C : Master zieht SCL auf Masse“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
PARTS_CLEARING_-_Sheet1.pdf
not be shipped due to it's weight CONTACT ME VIA: partsclearing@obrplstnr.eu EVALBOARDS / BREAKOUTS STM32 VL Discovery Evaluation Board demo firmware, E01 not loaded! €5.00 2 http://www.digikey.ahttp://media.d 10€ digikey available STM32L Discovery Evaluation Board demo firmware, E02 not loaded! €7.50 1 http://www.watterott.co http://galeria.tech- 15€ watterott available STM32F4 Discovery Evaluation Board used, working, E03 demo firmware €7.50 1 not loaded! http://www.digikey.at/p http://blog.tkjelect 15€ digikey available Digilent Basys 2, FPGA - Spartan 3E (250k Gates
in „[V] Rigol DS1052E, Labornetzteil, Robotikteile, Modellbau“ · Markt ·
-
Datei
startup_stm32f10x_md.s
/** ****************************************************************************** * @file startup_stm32f10x_md.s * @author MCD Application Team * @version V3.5.0 * @date 11-March-2011 * @brief STM32F10x Medium Density Devices vector table for Atollic toolchain. * This module performs: * - Set the initial
in „Stm32 SystemInit() C++“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
M220SP01_V.0.pdf
W (Stand by) C Weight A [Grams] TBD (Typ) Physical Size (H xOV x D) [mm] 493.7(H) x 320.1(V) x 16.5(D) (Typ) F VESA standard Analog RGB ; Electrical Interface DVI-D ( HDCP1.1) Surface Treatment Anti-glare type, Harness 3H Support Color 16.2M colors (RGB 6-bits
in „[S] TFT Steuerplatinen“ · Markt ·
-
PDF
semicon.pdf
SOT23 2860 RECT LP2980IM5X 5,0V regulátor SOT23 2840 RECT LP2980IM5 3,6V regulátor SOT23 240 RECT STM L7808CD2T TR regulátor D2pack 1000 RECT MC 33269 3,3V D2pack 1000 x LM1086 CS ADJ D2pack 140 x ZMM 6V8 SMD zener SOT23 1680 x BZX84C 5V1 LT1 SMD zener SOT23 3000 x BZX84C 5V6 7 SMD zener SOT23 8800
in „4" TFT für 7,97€“ · Markt ·
-
Datei
main.c
#include "stm32f10x.h" #include <stdbool.h> #include <stdio.h> #include "ov7670-regs.h" #include "main.h" // ---------------------------------------------------------------------------- /* * Timelapse Camera Project
in „OV7670 an STM32F102“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
FlashDriver.h
date: 2015-7-2 ** Version: V1.1 ** Descriptions: add english description ** *********************************************************************************************************/ #ifndef __FLASHDRIVER_H #define __FLASHDRIVER_H /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx.h" /* Private function prototypes -----------------------------------------------*/ void df_read_open
in „Font in SPI Flash schreiben“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32F10x_128k_32k_flash.ld
/* Default linker script for STM32F10x_128K_32K with GNU-ld Martin Thomas, 9/2009 A heavily modified "Default linker script for STM32F10x_512K_64K" Copyright RAISONANCE S.A.S. 2008 found in the STM fw-library. (there is not much left
in „STM32 mit C++ stürzt bei Interrupt ab“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4xx_spi.c
**** */ /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_spi.h" #include "stm32f4xx_rcc.h" /** @addtogroup STM32F4xx_StdPeriph_Driver * @{ */ /** @defgroup SPI * @brief SPI driver modules * @{ */ /* Private typedef ----------------------------------
in „GCC Optimierung killt Funktion“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
controller.c
#include "stm32f10x_conf.h" #include <stm32f10x_lib.h> ErrorStatus HSEStartUpStatus; void RCC_Configuration(void); //Configures Clock for all devices and GPIOs void NVIC_Configuration(void); void GPIO_init(void); void SPI_init (void); //Initializes all required GPIOs void spi1_init(void); void Delay(vu32 nCount); int spi1_tx(int tx); //Creates a delay: nCount / Clock-Speed //Initializes the SPI-interface //Init nested vector interrupt controller #define BufferSize 32 //SPI's Buffersize GPIO_InitTypeDef
in „STMF32, SPI, Master, Vollduplex“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usart_nrf.h
#ifndef __USART_NRF_H #define __USART_NRF_H #ifdef DTU3PRO #include "stm32f4xx.h" #define UsartNrf USART3 #else #include "stm32f10x.h" #define UsartNrf USART2 #endif #include <math.h> #include <stdlib.h> #include <stdio.h
in „Wechselrichter Hoymiles HM-xxxx 2,4 GhZ Nordic Protokoll?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
processing.c
**************** */ /* -------------- Standard Include Files ----------------- */ #include <stdint.h> #include <stdbool.h> /* --------------- Special Include Files / Librarys ------ */ #include "tm_stm32f4_adc.h" #include "tm_stm32f4_hd44780.h" /* -------------- Projekt Include Files ---------------
in „Organisation der Header und Includes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32f10x_cl.c
/** ****************************************************************************** * @file startup_stm32f10x_cl.c * @author MCD Application Team, * @version V3.0.0 * @date 01. April 2010 * @brief STM32F10x Medium Density Devices vector table for GNU toolchain. * This module performs: * - Set the initial
in „STM32 mit C++ stürzt bei Interrupt ab“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2CRoutines.h
BY CUSTOMERS OF THE * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. * * <h2><center>© COPYRIGHT 2010 STMicroelectronics</center></h2> */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" /* Define to prevent recursive
in „stm32 Cortex I2C : Master zieht SCL auf Masse“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2CRoutines.h
BY CUSTOMERS OF THE * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. * * <h2><center>© COPYRIGHT 2010 STMicroelectronics</center></h2> */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" /* Define to prevent recursive
in „Cortex I2C zu kurze Impulsdauer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4xx.h
* @{ */ #ifndef __STM32F4xx_H #define __STM32F4xx_H #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** @addtogroup Library_configuration_section * @{ */ /* Uncomment the line below according to the target STM32
in „STM32F0 Discovery und UART1“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4xx.h
* @{ */ #ifndef __STM32F4xx_H #define __STM32F4xx_H #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** @addtogroup Library_configuration_section * @{ */ /* Uncomment the line below according to the target STM32
in „STM32F4 SPI Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4xx_rcc.c
-------------------------*/ #include "stm32f4xx_rcc.h" /** @addtogroup STM32F4xx_StdPeriph_Driver * @{ */ /** @defgroup RCC * @brief RCC driver modules * @{ */ /* Private typedef -----------------------------------------------------------*/
in „STM32F103 Bluepill mit 128kb lässt sich nicht flashen“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SAM3X.pdf
B7 PB7 E2 PA7 G7 PA20 K2 DFSDP B8 PB3 E3 PA8 G8 PA3 K3 DFSDM B9 PA29 E4 VDDCORE G9 PA2 K4 VDDCORE B10 PA27 E5 GND G10 PB12 K5 XOUT32 C1 PA12 E6 GND H1 XIN K6 VDDOUT C2 PA14 E7 VDDIO H2 GNDUTMI K7 VDDANA
in „ARM SAM3x Zähleingang“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SAM3X.pdf
B7 PB7 E2 PA7 G7 PA20 K2 DFSDP B8 PB3 E3 PA8 G8 PA3 K3 DFSDM B9 PA29 E4 VDDCORE G9 PA2 K4 VDDCORE B10 PA27 E5 GND G10 PB12 K5 XOUT32 C1 PA12 E6 GND H1 XIN K6 VDDOUT C2 PA14 E7 VDDIO H2 GNDUTMI K7 VDDANA
in „Arduino Due: Programmierung ohne 16U2“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ADD9910_Design.pdf
? R? FFOC CFL? P1 Cap 18k C? V_IN_24VPI?01 PI?02 GND PI GND PC Cap 33k P? IPL?1 PIF?02CC_24V_DEV 4.7µF 4.7µF PI1 Fuse 1 P0 1 10?PIP D?DOC 2 20?PIP SMBJ24CA IPL?3 PIF?04 GND GND Header2 BNX024H01L GND NLVC0240NEG P0 VC _24V_NEG VCC_1V8_DVDD IC? LT3042HDD#PBF VCC_3V3_DVDD VDD_4V 1 10 B PII?0 IN_1 OUT
in „PCB -Frequenzrampe 100khz-360 MHz“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
startup_stm32f107xc.s
/** *************** (C) COPYRIGHT 2017 STMicroelectronics ************************ * @file startup_stm32f107xc.s * @author MCD Application Team * @version V4.2.0 * @date 31-March-2017 * @brief STM32F107xC Devices vector table for Atollic toolchain. * This module performs: * - Set the initial SP * - Set
in „FreeRTOS - Heap nach Reset“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
not_fitted_schaltplan_uC.pdf
1 1 TP4 3 R 5 R 680p A / 100k 50V A A R3 1 EN D FB 4 FB 3 G GND R R H D1 GND GND A C3 C4 C5 C6 7P4541GN-Z C7 C8 C9 C10 TP5 C 50V 50V 50V 50V 6 8 7R 6.3V 6.3V 10u 10u J 4u7 1u 100n 1u R 6 R 100n 1u 6.3V 6.3V k +3V3 B 0 8 1 S T1 1 R NF C11 9 1 1 1 1 1 1 NF1 TP6 TP7 BSS138
in „Übersprechen von einem uC-Pin zum Anderen“ · Analoge Elektronik und Schaltungstechnik ·
-
Bild
Schaltplan eines HF-Teils mit STM32WLE5CCU6
INPUT VCTL2 INPUT OUTPUT2 GND OUTPUT1 U22 BWU_FL_IPEX4 R56 100Ω C67 33pF RF_CTL1 GND C23 100pF C85 4.7pF C74 L10 12nH GND L5 9.1nH C80 100pF C76 3.6pF L13 47nH C77 6.8pF C75 3.6pF C79 47pF U36 3.9nH GND GND GND U37 STM32WLE5CCU6 PB3 VSSMPS PB4 VLXSMPS PB5 VDDSMPS PB6 VFBSMPS PB7 PA15 PA0 PA14 PA1 A13 VDDA PA2 PC15-OSC32_OUT IN PA3 PC14-OSC32_OUT PA4 VDDA PA5 PC13 PA6 PA12 PA7 PA13 PA8 PA12 PB1 PB2 NRST PH3-BOOT0 RFI P PB0-VDD TCXO RFI P VDDR_AV55 RFO_LP OSC_OUT RFO_HP OSC_IN VR_PA VDDA
in „868MHz Impedanzmatching - Fragen zum Matching-vorgehen“ · HF, Funk und Felder · · Schaltpläne
-
Datei
IOTaskSTestSPI.cpp
IOTask.cpp * * Created on: Feb 12, 2016 * Author: sn */ /* Kernel includes. */ #include "FreeRTOS.h" #include "task.h" #include "mbed.h" #include "stm32f4xx_conf.h" #include "stm32f4xx_spi.h" #include "IOTask.h" inline FlagStatus __attribute__((optimize("Os"))) SPI_I2S_GetFlagStatus(SPI_TypeDef* SPIx
in „STM32F4xx: Kann mal jemand die SPI testen?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
config.c
/* Portbelegungen und Konfiguration: */ #include "StdTypes.h" #include "STM32F103all.h" #include "startup.h" #include "config.h" /* Portbelegungen und Konfiguration: ================================= Diese Konfiguration ist für den STM32F103C8T6, also im LQFP-
in „MINOS - Minos Is No Operating System“ · Projekte & Code ·
-
Datei
config.c
/* Portbelegungen und Konfiguration: */ #include "StdTypes.h" #include "STM32F103all.h" #include "startup.h" #include "config.h" /* Portbelegungen und Konfiguration: ================================= Diese Konfiguration ist für den STM32F103C8T6, also im LQFP-
in „Problem mit Clock Configuration beim STM32G031“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
code implements a TCP Echo Server application based on * Raw API of LwIP stack. This application uses STM32F4xx the * ETH HAL API to transmit and receive data. * The communication is done with a web browser of a remote PC. ****************************************************************************** *
in „lwIP STM32f4 kontiuierlich senden“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ili9341.c
uint8_t x_cmd[] = { 0xD3 }; static uint8_t y_cmd[] = { 0x93 }; static uint8_t sleep[] = { 0x00 }; uint32_t x_avg = 0U; uint32_t y_avg = 0U; uint16_t sample = req_samples; uint16_t num_samples = 0U; // change SPI clock to 2MHz, max rate supported by XPT2046 // TODO: based on STM32G4, which is clocked at
in „STM32U575 und ILI9341 SPI DMA Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
// includes #include <stddef.h> #include <stdlib.h> #include "stm32l1xx.h" #include "halfSinus.h" // defines #define VREF 2920 // VREF+ (mV), nearly VDD // variables volatile uint16_t amplitude; // function prototypes void InitLEDs
in „STM32L1 - ADC mit Timertriggerung und EOC-Interrupt hängt sich auf“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32f103xb.s
/** *************** (C) COPYRIGHT 2017 STMicroelectronics ************************ * @file startup_stm32f103xb.s * @author MCD Application Team * @version V4.2.0 * @date 31-March-2017 * @brief STM32F103xB Devices vector table for Atollic toolchain. * This module performs: * - Set the initial SP * - Set
in „arm-none-eabi Problem.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32f103xb.s
/** *************** (C) COPYRIGHT 2017 STMicroelectronics ************************ * @file startup_stm32f103xb.s * @author MCD Application Team * @version V4.2.0 * @date 31-March-2017 * @brief STM32F103xB Devices vector table for Atollic toolchain. * This module performs: * - Set the initial SP * - Set
in „STM32F103 System Workbench“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
mmc_stm32f0_spi.c
Private Functions /////////////////////////////////////////////////////////////////////////// #include "stm32f0xx_conf.h" #include "diskio.h" #include <string.h> // MMC/SD command #define CMD0 (0) ///< GO_IDLE_STATE #define CMD1 (1) ///< SEND_OP_COND (MMC) #define ACMD41 (0x80+41) ///< SEND_OP_COND (SDC)
in „FatFs SD Keine Antwort“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32F10x.s
;/*****************************************************************************/ ;/* STM32F10x.s: Startup file for ST STM32F10x device series */ ;/*****************************************************************************/ ;/* <<< Use Configuration Wizard in Context Menu >>> */ ;/***
in „STM32 SysTick“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
eGC.pdf
VRAM_D0 K2 VRAM_A1 VRAM_A1 PIIC40M3 DQ0 PIIC40G2D1 VRAM_D1 PIIC20K1L37P_M3DQ0_3 VRAM_A2 VRAM_A2 PIIC40M7 DQ1 PIIC40H7D2 VRAM_D2 PIIC20J3L36N_M3DQ1_3 B VRAM_A3 VRAM_A3 PIIC4A32 DQ3 PIIC40H3D3 VRAM_D3 PIIC2IO_L38N_M3DQ3_3 B VRAM_A4 VRAM_A4 PIIC4A48 DQ4 PIIC40H1D4 VRAM_D4 PIIC2IO_L41P_GCLK27_M3DQ4_3 VRAM_A5
in „[Suche] Interessierte(n) an Projekt (ARM/FPGA)“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
schaltplan_uC.pdf
1 1 1 TP4 3 R 5 R 680p A / 100k 50V A _ R3 1 EN D FB 4 FB 4 5 E G GND R R H D1 GND GND TP5 A C3 C4 C5 C6 0R 7MP4541GN-Z C7 C8 C9 C10 C 50V 50V 50V 50V 6 8 7 6.3V 6.3V 10u 10u J 4u7 1u 100n 1u R 6 R 100n 1u 6.3V 6.3V k +3V3 B 0 8 1 S T1 1 R C11 9 1 1 1 1 1 1 1 1 1 TP6 TP7 BSS138
in „Übersprechen von einem uC-Pin zum Anderen“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
lwipopts.h
configuration for the STM32F4x7 demonstration. ****************************************************************************** * @attention * * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS * WITH
in „Olimex STM32E407, FreeRTOS und lwip“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f446.c
#include <stdlib.h> #include <stdint.h> #include "stm32f4_regs.h" #include "usart.h" #include "gpio.h" #define CONFIG_HSE_HZ 16000000 #define CONFIG_PLL_M 16 #define CONFIG_PLL_N 336 #define CONFIG_PLL_P 2 #define CONFIG_PLL_Q
in „Linux auf dem STM32 externes RAM“ · Mikrocontroller und Digitale Elektronik ·