-
PDF
MiniF4x1Cx_V31.pdf
1039 PB3 P IP2 04 PB10 PIP 104 4 CO9 PA4 1PIU1 014 PIU 1040 PB4 PB15 4 PIP 105 PA5 15 PA4 PB4 41 PB5 STM32 电源部分 PA8P IP2 05 5 PB2 5 GND PI90 PC90 PIU1 015 PA5 PB5 PIU 1041 PA9P IP2 06 6 PB1 PIP 106 6 PA6 1PIU1 016 PA6 PB6 PIU 1042 PB6 P IP2 07 PB0 PIP 107 7 1.5pF P0 PA7 1PIU1 017 PIU 1043 PB7 STM32 Power
in „was kommt nach dem Bluepill-Board?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
eeprom.c
****************************** */ /* ------------- INCLUDES ----------------- */ #include <stdbool.h> #include <stdio.h> #include <stdint.h> // StdPeriph Lib + CMSIS #include <stm32f4xx.h> #include <stm32f4xx_i2c.h> #include "eeprom.h" /* ------------- DEFINES ------------------ */ // Timeout und E2PROM
in „STM32F4xx: 24LC512 EEPROM Zugriffsroutinen“ · Projekte & Code ·
-
Datei
eeprom.c
****************************** */ /* ------------- INCLUDES ----------------- */ #include <stdbool.h> #include <stdio.h> #include <stdint.h> // StdPeriph Lib + CMSIS #include <stm32f4xx.h> #include <stm32f4xx_i2c.h> #include "eeprom.h" /* ------------- DEFINES ------------------ */ // Timeout und E2PROM
in „Organisation der Header und Includes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
06072010.txt
BY CUSTOMERS OF THE * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. * * <h2><center>© COPYRIGHT 2010 STMicroelectronics</center></h2> */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" #include "USART.h" unsigned
in „STM32 Interrupts“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsnd.c
for IRSND_OCx, choose IRSND_OC2 in irsndconfig.h # endif // IRSND_OCx #elif defined (__AVR_ATmega16__) || defined (__AVR_ATmega32__) // ATmega16|32 uses OC2 = PD7 # if IRSND_OCx == IRSND_OC2 // OC2 # define IRSND_PORT_LETTER D # define IRSND_BIT_NUMBER
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
PDF
Memory_LCD_Theory__Programming__and_Interfaces.pdf
*******************************************************************/ #include “MLCD User Functions.h” #include “MLCD Driver.h” #include “stm32f072xb.h” // Note: Both the stm32f0xx_hal_spi.c and stm32f0xx_hal_dma.c routines were // streamlined for this application. These routines may be obtained // by contacting your local Sharp SMA office. #include “stm32f072_sma_spi.h” #include “stm32f0xx_sma_dma.h” static SPI_HandleTypeDef spi_blk; static SPI_IBLK_TypeDef spi_iblk; void MLCD_Init_SPI(void) { // Set up the SPI blocks so the SPI can be configured spi_iblk.SPI_CR1
in „LS032B7DD02 Datenblatt“ · 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
main.c
*/ /* Includes ------------------------------------------------------------------*/ #include "main.h" /** @addtogroup STM32F3_Discovery_Peripheral_Examples * @{ */ /** @addtogroup ADC_Example * @{ */ /* Private typedef -----------------------------------------------------------*/ /* Private define -
in „ADC mit STM32 F3 Discovery“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F10xxx__20xxx__21xxx_L1xxxx_Cortex-M3_programming_manual.pdf
register disables certain aspects of functionality within the processor. This register is available in STM32F2 and STM32L series. 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 Reserved 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 DISF DISD DISM EFW CYCI Reserved OLD BUF NT rw rw rw DocID15491 Rev 5 129/156 Core
in „Einstieg in STM32 : STM32F103C8T6 --> Kompilieren und Flashen?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "stm32f10x_spi.h" #include "system_stm32f10x.h" #include "methoden.c" int main() { SPI_init(); // reset auf high //GPIOA->BRR = GPIO_Pin_1; //GPIOA-
in „STM32 SPI-Bus Probleme mit Prescaler und delay() Realisierung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STMPE811QTR.c
Includes ------------------------------------------------------------------*/ #include "STMPE811QTR.h" #include "stm32f4xx_exti.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "misc.h" /** @defgroup STM32F4xx_StdPeriph_Examples * @{ */ #define TIMEOUT_MAX 0x3000 /*<! The value of the maximal timeout for I2C waiting loops */ /** * @} */ /** @defgroup STM32F4_DISCOVERY_IOE_Private_Variables * @{ */ TS_STATE TS_State; /*<! The global structure holding the TS state */ uint32_t IOE_TimeOut = TIMEOUT_MAX; /*<! Value of Timeout when I2C communication fails
in „STM32F4 Touch Display Interrupt“ · 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
ILI9488.h
/* * ILI9488.h * * Created: 02.01.2016 09:17:18 * Author: Dipl.- Ing. C. Graci */ #ifndef ILI9488_H_ #define ILI9488_H_ // Delay fürs CS #define CSDELAY 0 #include "stdint.h" #include "ili9488_regs.h" #include "stm32f7xx_hal.h" #include "stdlib.h" #include "stm32f7xx_nucleo_144.h" #include <math.h> #include <string.h> #include "stm32f7xx_hal_spi.h" #include "rgbfarbtabelle.h" typedef int16_t ili9488_coord_t; //typedef uint16_t ili9488_color_t
in „STM32 F746zg nucleo und ILI9488 TFT per SPI langsam ?“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
STM32 ST-LINK Utility Speicheranzeige
STM32 ST-LINK Utility Device STM32F411xC/E Device ID 0x431 Revision A Flash size 256KBytes Address: 0x08000000 Size: 0xD755 Data Width: 32 bits Device Memory @ 0x08000000 File: [wc12h-stm32f103-ws2812-grb.hex
in „WordClock mit WS2812“ · Projekte & Code · · Screenshots
-
Datei
Endlosschleife.txt
Includes ------------------------------------------------------------------*/ 00029 #include "main.h" 00030 00031 /** @addtogroup STM32F4xx_StdPeriph_Examples 00032 * @{ 00033 */ 00034 00035 /** @addtogroup RTC_Timer 00036 * @{ 00037 */ 00038 00039 /* Private typedef --------------------------------
in „Endlosschleife in RTC Beispiel“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Schematic_ED2109-015-A.pdf
VSS UART_EN R20 B B PH1-OSC_OUT VCAP1 100nF 100nF 100nF 9 8 S S STM32F401CCU6 C18 VDDA/VREF+ VSSA/VREF- 10k U U 1uF GND GND STM32F401CCU6 GND IC3 GND C19 GND USB_DP+ 16 VCC TXD 2 OSCA_1 2 USB_DP- 4 V3 RXD 3 2 22pF Y3 C9 C12 RTS# 14 XTAL1 3 GND 100nF 100nF 13 1 5 DTR# 12 C13 AbraconAB26TRQ-32.768KHZ-T GND GND 6 D+ DCD# 11 OSCA_2 D- RI# I 10 1 DSR# 9 GND 22pF AbraconABS07-LR-32.768KHZ-6-1-T CTS# 15 R232 C14 D X0 8 OSCB_1 D 1 GND X1 7 3 Y1 4 Y2 MurataCSTCE12M0G52-R0 22pF H 1 G 2 GND GND 2 R15
-
Datei
tools.c
/* -------------- System Include Files ------------------- */ #include "stm32f10x_conf.h" #include "system_stm32f10x.h" /* -------------- Standard Include Files ---------------- */ #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> /* ----------
in „STM32F1xx: Wie GOL am "Leben" halten?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tools.c
/* -------------- System Include Files ------------------- */ #include "stm32f10x_conf.h" #include "system_stm32f10x.h" /* -------------- Standard Include Files ---------------- */ #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> /* ----------
in „Umgang mit globalen Datenstrukturen“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
rm0444-stm32g0x1-advanced-armbased-32bit-mcus-stmicroelectronics.pdf
table summarizes the SRAM resources on the devices, with parity check enabled and disabled. . Table 7. SRAM size SRAM with parity enabled SRAM with parity disabled Device (Kbyte) (Kbyte) STM32G0B1xx and STM32G0C1xx 128 144 STM32G071xx and STM32G081xx 32 36 STM32G051xx and STM32G061xx 16 18 STM32G031xx
in „Problem mit Clock Configuration beim STM32G031“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Schematic_ED2109-015.pdf
VSS UART_EN R20 B B PH1-OSC_OUT VCAP1 100nF 100nF 100nF 9 8 S S STM32F401CCU6 C18 VDDA/VREF+ VSSA/VREF- 10k U U 1uF GND GND STM32F401CCU6 GND X2 IC3 GND A4 VBUS1 D+ A6 C19 GND A9 VBUS2 D+ B6 USB_DP+ 16 VCC TXD 2 OSCA_1 2 B4 VBUS3 D- A7 USB_DP- 4 V3 RXD 3 2 B9 VBUS4
-
Datei
usb.c
/* USB als virtuellen COM Port betreiben */ #include "usb.h" /* For devices with 2 x 16 bits / uint16_t access schema (e.g. STM32L0x2, STM32L0x3, STM32F0x2, STM32F303xD and xE) */ //#define UMEM_SHIFT 0 //#define UMEM_FAKEWIDTH uint16_t /* For devices with 1 x 16 bits / uint16_t access schema (e.g. STM32F103, STM32F302, STM32F303xB and xC) */ #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 „STM32 USB Übertragungsproblem mit Code von S.F.“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ArmAssemblerTutorial.pdf
development boards with these controllers are available, for example: Nucleo-F103, “Blue Pill” (search for “stm32f103c8t6” on AliExpress, Ebay or Amazon), Olimexino-STM32, STM32-P103, STM32-H103, STM3210E-EVAL. Processor type & documentation First, the microcontroller manufacturer’s documentation is used to find
in „ARM-Assembler-Tutorial“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
Date: $ ID: $Id: $ **********************************************************************/ #include "stm32f4xx_conf.h" #include "stm32f4xx.h" #include "stm32f4xx_spi.h" int main(void) { init_SPI1(); while(1) { } } void init_SPI1(void) { GPIO_InitTypeDef GPIO_InitStruct; SPI_InitTypeDef SPI_InitStruct;
in „STM32F4 SPI1 Slave“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
f_mess_lcd.c
// reziproke Frequenzmessung mit STM32F4-Discovery-Board // Ausgabe der Ergebnisse auf LCD 2x16 /* Beispielprogramm für Frequenzmessung an PE5 mit Timer9. Das Ergebnis wird 7-stellig mit max. 5 Mess./s oder minimal 1 Periodendauer angezeigt
in „reziproker Frequenzzähler mit STM32F4Discovery“ · Projekte & Code ·
-
Datei
eeprom.c
** */ #pragma GCC optimize ("O0") /* ------------- INCLUDES ----------------- */ #include <stdbool.h> #include <stdio.h> #include <stdint.h> // StdPeriph Lib + CMSIS #include <stm32f4xx.h> #include <stm32f4xx_i2c.h> #include "eeprom.h" /* ------------- DEFINES ------------------ */ #define E2P_DATA_VALID
in „GCC Optimierung killt Funktion“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2C.c
#include "stm32f10x_rcc.h" #include "stm32f10x_gpio.h" #include "stm32f10x_i2c.h" #include "I2C.h" void I2C_init(I2C_TypeDef* I2Cx, uint32_t speed) { RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB | RCC_APB2Periph_AFIO
in „STM32F103RFT6 I2C2 keine Funktion“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
cj_gol.c
/* Game of Life (C) Christian Julius 2.2015 */ #include <stdlib.h> #include <stdio.h> #include <stdbool.h> #include <stdint.h> #include <string.h> #include <ctype.h> // Special Libs #include "defines.h" #include "tm_stm32f4_delay.h" #include "tm_stm32f4_ili9341_ltdc.h" #include "tm_stm32f4_fonts.h" #include "tm_stm32f4_rng.h" // Projekt Header #include "cj_gol.h" ///////////////////////////////////////////// // Conways Game of Life ///////////////////////////////////////////// #define
in „Bedarf an eigenbau STM32F429 Evaluation Board ?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
16.10.2014_Entwurf.pdf
12pF RTC 2 PC13 / RTC JTMS-SWDIO / PA13 46 TMS PA5 PB12 2 1 3 49 TCK 14 PA6 14 PB11 C121 12pF Q101 32.768kHz 4 PC14 / OSC32_IN JTCK-SWCLK / PA14 50 TDI 15 PA7 15 PB10 PC15 / OSC32_OUT JTDI / PA15 16 PC4 16 PC5 C104 Q100 5 17 17 12pF 6 PD0 / OSC_IN 2 z PD1 / OSC_OUT Stiftleiste Stiftleiste H PD2 54 PD2
in „Interesse an einer Sammebestellung STM32 Breakoutboards?“ · Markt ·
-
PDF
20.10.2014_Entwurf_4.pdf
2 k GND VBAT JTDO / PB3 56 NJTRST 1 n 1 L101 51nH 100nF 13 NJTRST / PB4 57 PB5 0 0 1 S100 C 0 X102 Ferrite Bead 32 VDDA I2S3_SD / PB5 58 TASTER R R R 1 VDD_1 PB6 RST 1 2 TDO 48 VDD_2 PB7 59 LED2 1 1 1 TCK 3 4 NJTRST 0 7 8 9 64 VDD_3 PB8 61 LED1 TMS
in „Interesse an einer Sammebestellung STM32 Breakoutboards?“ · Markt ·
-
Datei
nrf24l01.c
"stm32f4xx.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_spi.h" #include "stm32f4xx_gpio.h" /* -------------- Standard Include Files ----------------- */ #include <stdint.h> /* --------------- Special
in „Wer hat noch Ärger mit NRF24L01+ Funkmodulen?“ · Mikrocontroller und Digitale Elektronik ·
-
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_disco.h" /* -------------- Projekt Include Files ---------------- */ #include "nrf24l01.h" #include "config.h" /* -------------- Typen Deklarationen--------------------- */ #define PAYLOAD_SIZE
in „[STM32F4xx] NRF24L01+ Funkmodul Source Code“ · Projekte & Code ·
-
Datei
0001-WS2812-fix-too-short-reset-pulse.patch
current rgb buffer index +static uint_fast8_t next_rgb_buf_idx; // next rgb buffer index + #if defined (STM32F4XX) // STM32F4xx typedef uint16_t DMA_BUFFER_TYPE; // 16bit DMA buffer, must be aligned to 16 bit #else // STM32F10x @@ -205,7 +207,7 @@ ws2812_dma_start (void) TIM_Cmd (WS2812_TIM, DISABLE); //
-
PDF
Akkuschutz-V0.2.pdf
RESET R9 R11 RESET 1M 1M GND GND siehe VIA`s SWCLK SWCLK SWDIO SWDIO PACK- SWO SWO R1 VCC +3V3 CSS2H-2512R-1L00F T1 T2 SIDR500EP-T1-RE3 SIDR500EP-T1-RE3 0.47mOhm 0.47mOhm GND R36 X6-1 LED1 R38 X6-2 LED2 STM32WB5MM Wassermelder und Bedienung R39 X6-3 LED3 1 1 2 2 R40 +3V3 +3V3 E +3V3 M E +3V3 R E +3V3 R X6-4 LED4 S R C T C T R41 U2B U2A A L Ä S Ä S X6-5 LED5 STM32WB5MMGH6TR STM32WB5MMGH6TR W A F T F T 1M E X1-5 GND 2 of 2 2 S 9 1 79 PE0 VBAT 15 TEMP-R_SENSE 3 PA0 PC0 12 NTC4 R 1 A R 1 R 1 64 PE1 TEMP-R_DISCH 2 PA1 PC1 9 NTC3 W 78 PE2 VDDA 6 1 PA2 PC2 8 NTC2
in „Ersatzbauteil - BMS incl. Balancer“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
___Voltcraft_PSP1405__SCHALTNETZTEIL_Schaltplan.pdf
ADuC 7026 P2.7 48 2 C21 R66 120K P3.7 47 14 TMS P3.6 46 100nF CN11 15 45 TDI XCLK1 C5 U2 R65 120K 16 44 1 8 17 P0.1 XCLK0 32.768KHz P2.3 43 XTL1 NC 2 3 7 P0.7 R3 R1 8 18 P4.6 P2.0 42 1 VDDI0 10M 3 7 6 J11 19 P4.7 IRQ0
in „Labor Schaltnetzteil PSP1405 (Voltcraft) haut es immer die beiden IRF840 durch.“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
000512411-qs-01-en-SCHALTPLAN_PROGRAM__SCHALTNETZTEIL_PSP_1.pdf
ADuC 7026 P2.7 48 2 C21 R66 120K P3.7 47 14 TMS P3.6 46 100nF CN11 15 45 TDI XCLK1 C5 U2 R65 120K 16 44 1 8 17 P0.1 XCLK0 32.768KHz P2.3 43 XTL1 NC 2 3 7 P0.7 R3 R1 8 18 P4.6 P2.0 42 1 VDDI0 10M 3 7 6 J11 19 P4.7 IRQ0
in „Labor Schaltnetzteil PSP1405 (Voltcraft) haut es immer die beiden IRF840 durch.“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
STM32_Ethernet_Start_Point_20180307.pdf
GettingStartedwithEthernetontheSTM32Nucleo Using STM32CubeMX with Light-Weight IP (LwIP) and System Workbench for STM32 (Eclipse) Daniel W Rickey CancerCare Manitoba drickey@cancercare.mb.ca 2018-03-07 Introduction TheNucleoboardsproducedbySTMicroelectronicsarewonderfullypowerfulandcheap
in „STM32 LwIP + HTTPD“ · 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 ·
-
Datei
tools.c
/* -------------- System Include Files ------------------- */ #include "stm32f10x_conf.h" #include "system_stm32f10x.h" /* -------------- Standard Include Files ---------------- */ #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> /* ----------
in „Matrix indizierbar machen?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_eval_sdio_sd.c
board (refer to stm32_eval.h * to know about the boards supporting this memory). * It implements a high level communication layer for read and write * from/to this memory. The needed STM32 hardware resources (SDIO and * GPIO) are defined in stm32xx_eval.h file, and the initialization is * performed in SD_LowLevel_Init() function declared in stm32xx_eval.c * file. * You can easily tailor this driver to any other development board, * by just
in „STM3210E EVAL SD-Controller SDIO + HiTOP“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
*/ /* Includes ------------------------------------------------------------------*/ #include "main.h" #include "stlogo.h" /** @addtogroup STM32F7xx_HAL_Examples * @{ */ /** @addtogroup BSP * @{ */ /* Private typedef -----------------------------------------------------------*/ /* Private define ----
in „Discovery_STM32F746 Linking Problem“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
16.10.2014_Entwurf_2.pdf
12pF RTC 2 PC13 / RTC JTMS-SWDIO / PA13 46 TMS PA5 PB12 2 1 3 49 TCK 14 PA6 14 PB11 C121 12pF Q101 32.768kHz 4 PC14 / OSC32_IN JTCK-SWCLK / PA14 50 TDI 15 PA7 15 PB10 PC15 / OSC32_OUT JTDI / PA15 16 PC4 16 PC5 C104 Q100 5 17 17 12pF 6 PD0 / OSC_IN 2 z PD1 / OSC_OUT Stiftleiste Stiftleiste H +3.3V R120
in „Interesse an einer Sammebestellung STM32 Breakoutboards?“ · Markt ·
-
PDF
17.10.2014_Entwurf_3.pdf
VBAT 1 BOOT1 / PB2 55 TDO +3.3V k k k k k k GND VBAT JTDO / PB3 56 NJTRST 1 1 1 1 1 1 L101 51nH 100nF 13 NJTRST / PB4 57 PB5 0 0 1 S100 X102 Ferrite Bead 32 VDDA I2S3_SD / PB5 58 TASTER R R R VDD_1 PB6 RST 1 2 TDO 48 VDD_2 PB7 59 LED2 1 1 1 TCK 3 4 NJTRST 0 7 8 9 64 VDD_3 PB8 61 LED1 TMS 5 6 TDI
in „Interesse an einer Sammebestellung STM32 Breakoutboards?“ · Markt ·
-
PDF
User_Guide_ETEMB043013XDHAL_Interface_Description_V1.0.pdf
Embedded module has everything needed to build a modern Graphic User Interface Module. The MCU used is STM32F750 Cortex-M7 series with integrated TFT controller. Resolution of this 4.3” module is 480x272. Power Supply input is 7 to 36V. EDT Smart Embedded boards supports TouchGFX and FreeRTOS. We have implemented
in „EDT Display Interface mit STM32F7“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irmp_stm8.diff
Composer Studio) # define STELLARIS_ARM_CORTEX_M4 # define F_CPU (SysCtlClockGet()) +#elif defined(__SDCC_stm8) +# define SDCC_STM8 #elif defined(unix) || defined(WIN32) || defined(__APPLE__) // Unix/Linux or Windows or Apple # define UNIX_OR_WINDOWS #else @@ -116,6 +118,15 @@ # define PROGMEM # define memcpy_P memcpy +#elif defined(SDCC_STM8) + +# include "stm8s.h" +# define PROGMEM +# define memcpy_P memcpy +# define __attribute__(x) +# define uint_fast8_t uint8_t +# define uint_fast16_t uint16_t + #else # define PROGMEM
-
Datei
stm32F43x.lib.txt
EESchema-LIBRARY Version 2.2 Date: 08/04/16-12:40:10 # # stm32F43x # DEF stm32F43x U 0 40 Y Y 1 0 N F0 "U" 0 -100 50 H V C C F1 "stm32F43x" 0 100 50 H V C C F2 "MODULE" 0 0 50 H I C C F3 "DOCUMENTATION" 0 0 50 H I C C DRAW S -1900 1900 1900 -1900 1 0 0 N X BOOT0
-
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 ·
-
Datei
mmc_stm32f1.c
copyright notice. / /-------------------------------------------------------------------------*/ #include "stm32f10x_conf.h" #include "system_stm32f10x.h" /* -------------- C Standard Include Files --------------- */ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <stdint.h> #include "rtc_user.h
in „STM32F103: Problem mit ChanFat und SD karte“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tbasic.c
-------- */ /* ################################################################## I/O Mapping fuer STM8S103F3 ################################################################## ------------ (PD4) I/O 9 | 1 20 | I/O 8 (PD3) UART_TX | 2 19 | (PD2) UART_RX | 3 18 | SWIM NRST | 4 17 | I/O 7 (PC7) (PA1) Autorun
-
Datei
main.c
#include "stm32f0xx.h" #include <stdbool.h> #include <stdio.h> #include "main.h" // ---------------------------------------------------------------------------- /* * * RAM Bank of 5 23LC1024 SPI memory chips testing
in „SPI-RAM-Bank an STM32F0-Discovery - write, kein read“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f0xx.h" #include <stdbool.h> #include <stdio.h> #include "main.h" // ---------------------------------------------------------------------------- /* * * RAM Bank of 5 23LC1024 SPI memory chips testing
in „SPI-RAM-Bank an STM32F0-Discovery - write, kein read“ · Mikrocontroller und Digitale Elektronik ·