-
Datei
main.c
; // DUMMY WRITE // Wait until RX buffer is not empty, then read the received data while (SPI_I2S_GetFlagStatus(bus_type, SPI_I2S_FLAG_RXNE)==0) {} Result_read = Result_read<<8; Result_read |= SPI_I2S_ReceiveData(bus_type); // Read } // Reset to device SPIx if (bus_type==SPI1) GPIO_WriteBit(GPIOA
in „STM32 ,TDC GP22 antwortet nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_eval_sdio_sd.c
SDIO_CmdInitTypeDef SDIO_CmdInitStructure; SDIO_DataInitTypeDef SDIO_DataInitStructure; /** * @} */ /** @defgroup STM32_EVAL_SDIO_SD_Private_Function_Prototypes * @{ */ static SD_Error CmdError(void); static SD_Error CmdResp1Error(uint8_t cmd); static SD_Error CmdResp7Error(void); static SD_Error CmdResp3Error(void
in „STM3210E EVAL SD-Controller SDIO + HiTOP“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f0xx_it.c
** */ /* Includes ------------------------------------------------------------------*/ //#include "stm32f0xx_hal.h" //#include "stm32f0xx.h" //#include "stm32f0xx_it.h" /* USER CODE BEGIN 0 */ #include "definitions.h" #include "digitcommands.h" /* USER CODE END 0 */ /* External variables ------------
in „Interrupt wird ständig aufgerufen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f10x_can.c
& CANx->sFIFOMailBox[FIFONumber].RDLR; RxMessage->Data[1] = (uint8_t)0xFF & (CANx->sFIFOMailBox[FIFONumber].RDLR >> 8); RxMessage->Data[2] = (uint8_t)0xFF & (CANx->sFIFOMailBox[FIFONumber].RDLR >> 16); RxMessage->Data[3] = (uint8_t)0xFF & (CANx->sFIFOMailBox[FIFONumber].RDLR >> 24); RxMessage->Data[4] = (uint8_t)0xFF & CANx->sFIFOMailBox[FIFONumber].RDHR; RxMessage->Data[5] = (uint8_t)0xFF & (CANx->sFIFOMailBox[FIFONumber].RDHR
in „CAN mit STM32“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Terminal-Fenster mit C-Code und Makefile
../include SRCS = ./src/sysf03_init.o SRCS += ./src/my_printf.o INC_DIR = -I/-I../include SCRIPT = stm32f030x6.ld FLASHERPROG Auswahl fuer STM32: 0 : STLINK-V2, 1 : 1 : stm32flash 2 : stm32chflash 3 : DFU_UTIL 4 : flash1114_rts Hit [x] to abort command running time: 0s text data bss dec hex filename 2844 8 8 2860 b2c txtlcd demo.elf make all: done, thank you
in „Live-Linux: Anleitung schreiben“ · PC Hard- und Software · · Screenshots
-
Datei
CANTestcase.cpp
" #include "../../libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/stm32f10x.h" #include "../../libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_can.h" /** * \brief Constructor implementation. */ CANTestcase::CANTestcase(){ this->setUp(); return; }//eof /**
in „STM32F103: CAN - Bus funktioniert bei Medium-Density-, nicht aber bei High-Density device“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "stm32f10x_spi.h" void SPI_test(void); uint8_t sendData = 0xAA; int main(void) { SystemInit(); SPI_test(); while(1) { } } void SPI_test(void) { GPIO_InitTypeDef
in „SPI Problem mit STM32 und CooCox IDE“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
0269394001287118911.pdf
STM32F103RBT6(LQFP64) PA2-P 1 2 PA3-P PA10 1 2 PA11 PC10 EN 3 4 RW PC11 ferrite bead 560 PA4 3 4 PA5 PA12 3 4 PA13 D1 5 6 D0 C3 13 26 PB0 PA6 5 6 PA7 PA14 5 6 PA15 D3 7 8 D2 100n VDD_A PB0/ADC8/TIM3_CH3
in „Quarz an STM32F103 / Widerstand?“ · 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
main.c
BSP_LCD_SetTextColor(LCD_COLOR_DARKBLUE); /* Display LCD messages */ BSP_LCD_DisplayStringAt(0, 10, (uint8_t *)"STM32F746G BSP", CENTER_MODE); BSP_LCD_DisplayStringAt(0, 35, (uint8_t *)"Drivers examples", CENTER_MODE); /* Draw Bitmap */ BSP_LCD_DrawBitmap((BSP_LCD_GetXSize() - 80) / 2, 65, (uint8_t *)stlogo
in „Discovery_STM32F746 Linking Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ARM-STM32F4-Serie-Daten.txt
RAM-Datengröße: 192 kB Fabrikat: STMicroelectronics ADC-Auflösung: 12 bit Betriebsversorgungsspannung: 1.8 V to 3.6 V Maximale Betriebstemperatur: + 85 C Verpackung/Gehäuse: LQFP-100 Montageart: SMD/SMT RAM-Datentyp: SRAM Schnittstellen-Typ: CAN, I2C, I2S, SPI, UART Minimale Betriebstemperatur: - 40 C Anzahl
in „STM32F407VGT6 Pinkompatibilität zu den F427/F437 Typen ?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
IOTaskSTestSPI.cpp
: 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, uint16_t SPI_I2S_FLAG) { FlagStatus bitstatus
in „STM32F4xx: Kann mal jemand die SPI testen?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.cc
rx (); CAN1->sFilterRegister [iFilter].FR1 = id1.hwFormat (); CAN1->sFilterRegister [iFilter].FR2 = id2.hwFormat (); ++iFilter; } if (size % 2) { CAN1->sFilterRegister [iFilter].FR1 = msg [size - 1].rx ().hwFormat
in „CAN to CAN Converter“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
eeprom.c
I2C_EVENT_MASTER_RECEIVER_MODE_SELECTED) != SUCCESS) return 0xff; /* Wichtiger Hinweis, bzgl der Reihenfolge des Bit Setzens, Manual. STM32F407, S834 Die Konfiguration muss VOR dem Buszugriff erfolgen, d.h. das Datenbyte wird erst ganz zum Schluss ausgelesen */ // NACK einstellen E2PROM anzuzeigen, dass keine weiteren Daten angefordert
in „Lebensdauer von lokalen Variablen“ · Softwareentwicklung ·
-
Datei
netconf.c
LwIP_DHCP_task, "dhcp", 512, NULL, configMAX_PRIORITIES-1, NULL); // xTaskCreate(LwIP_DHCP_task, /*(int8_t *)*/"DHCP", configMINIMAL_STACK_SIZE * 2, NULL,tskIDLE_PRIORITY + 3, NULL); UART_send(0, "LwIP_DHCP_task created: %s \n\n\n\n", errCode==1 ? "success" : "FAIL!!!!!!!!!!!"); #if LWIP_DHCP DHCP_state
in „lwIP 1.4.1 + freeRTOS 8.2.3 + stm32f107vb“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Schaltplan_FARBE.pdf
48 PE7 PD13 47 48 PD12 I2C1_SCL PB6 136 PB5/I2C1_SMBAI/SPI3_MOSI/I2S3_SD PF3/FSMC_A3 14 PF4 A3 SDIO_D1 PC9 8 PE10 49 50 PE9 PD11 49 50 PD10 I2C1_SDA PB7 137 PB6/I2C1_SCL/TIM4_CH1 PF4/FSMC_A4 15 PF5 A4 SDIO_D0 PC8 7 D1 PE12 51 52 PE11 PD9 51 52 PD8 CAN_RX PB8 139 PB7/I2C1
in „STM32 Port-Initialisierung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
F2_messung_pwm.c
Bereich 1,678 - 3,000 MHz. */ #define F2_MESSUNG #include <stdio.h> #include <string.h> #include "stm32h7xx.h" extern void sende_string(char *s); // Ausgabe über USART3 extern void lcd_zeile1(char *s); extern void lcd_zeile2(char *s); extern uint8_t lcd_init(void); extern uint32_t SystemTimerClock;
-
PDF
Cactus_NeuroStim_Eval_Board_EB1CSI021_Datasheet.pdf
Neurostimulation / NeuroModulation Applications • Contains Two Synchronizable CSI021 ICs • Onboard Low-Power 8-bit MCU (STM- 8L151G6) With Preloaded Firmware to Program CSI021 • ST-Link V2 Dongle Provided to Communicate and Program the MCU for Customization • Onboard Adjustable Power Management APPLICATIONS Circuitry
in „Cactus Semiconductor EB1CSI021“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
oled.h
* minimum of 1029 byte SRAM! **************************************************** * * * adapted to STM8S105 * */ #ifndef OLED_H #define OLED_H #ifndef YES #define YES 1 #define NO 0 #else #error "Check #defines for YES and NO in other sources !" #endif #include <iostm8s105s4.h> #include <intrinsics.h
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
PDF
P-145-E-04-2014-v1_ST_Wireless_Connectivity.pdf
p r e s e n t e d b y Wireless Connectivity The right technology for IoT Distribution is today.Tomorrow is EBV! www.ebv.com WIRELESS CONNECTIVITY PORTFOLIO ® ® ST’s Bluetooth low-energy ICs are compliant with
in „Wlan2Serial Modul für 5 euro“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
KSGER_STM32_Ver2_1S_schematic_rev__1_floobydust.pdf
KSGER STM32 T12 Ver. 2.1S Pump Power VCC GND +3.3V OLED_SCL U1 +3.3V OLED_SDA STM32F103CBU6 +3.3V Pump Solenoid Pump Motor UFQFPN48 4 3 2 1 28 PB15 VDD_1 24 D4 D3 A L D C 27 PB14 VDD_2 36 D7 RS1M RS1M S S G V
in „Lötstation Quikko / Ksger T12 dtl Vorteil?“ · Mechanik, Gehäuse, Werkzeug ·
-
Datei
main.c
configured, this is done through SystemInit() function which is called from startup file (startup_stm32f10x_xx.s) before to branch to application main. To reconfigure the default setting of SystemInit() function, refer to system_stm32f10x.c file */ /* System Clocks Configuration */ RCC_Configuration
in „Stm32: Übertragungsfehler bei dauerhafter Übertragung“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
13475.pdf
specific variable types are defined. Their type and size are fixed. These types are defined in the file stm32f10x_type.h: typedef signed long s32; typedef signed short s16; typedef signed char s8; typedef signed long const sc32; /* Read Only */ typedef signed short const sc16; /* Read Only */ typedef signed
in „STM32F: SPI "Halbduplex"“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Schematic_STM32L05__HSN-TTN_Mini_Node_LoRa_v1.2_2021-02-27.pdf
C6 100nF 10uF S S D C A L C4 100nF R10 R9 100k 100k JP1 U1 GND PINHD-1X12-CB STM32L051C8T6 VCC 1 4 4 4 4 4 4 4 4 4 3 3 3 Neopix 2 D S 9 80 7 6 5 4 35 4 VCC 3 F D S P PT P P P P P A A 4 F V V O P P C2 5 1 VDD B VDDIO2
-
Datei
startup_stm32f10x_hd.s
/** ****************************************************************************** * @file startup_stm32f10x_hd.s * @author MCD Application Team * @version V3.3.0 * @date 04/16/2010 * @brief STM32F10x High Density Devices vector table for RIDE7 toolchain. * This module performs: * - Set the initial SP
in „STM32 Rücksprung defekt von IRQ“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STPicProgK.pdf
GND.2 3 IN OUT 1 47 GND.3 FB 3 N R10 R13 C6 G C7 LD1 STM32F103C8T6 4 2 C14 EN GND 200k 10uF 2 10uF TPS61041 47k 4 P Bezeichnung: STPicProg Blatt: Datum: 13.03.2017 09:47 1/1 4X 3 1 35 R 1 5 F 9 0 1 1 3 0 0 7 2 R 10 1 S C 1 R3 3 k - V B 2 F C R 4 D S 2 DS T S - V B 3 D 8 2 7 2 k D S D R 4 R 4 2 k 9 R 2 D 5U 7 3 2 D 9244CT 1 L 6 T S D V B 14016SPT 2 6 1 9 7 D R 3 37 7 k C U 2 4 Y R4 R 8 18 R 0 R 6 0 k 3 k 5 1 7 1 0 1 2 3 R 4 R 2 C I U 1 M 1 C C 1 3 2 D3 DF323
in „Padauk MCU für 0.038 USD aus Taiwan“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
debounce.h
/ /* Exported define -----------------------------------------------------------*/ // Bit position(s) of the key(s) that shall be debounced #define DEB_PSU_SENSE (debounce_t)1 #define DEB_USB_SENSE (debounce_t)2 // Mask for the keys that shall have long or repeated key press #define REPEAT_MASK 0 //
in „Taster entprellen beim STM32f1“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STMPE811QTR.c
Direction, uint8_t* buffer); static void IOE_EXTI_Config(void); #ifndef USE_Delay static void delay(__IO uint32_t nCount); #endif /* USE_Delay*/ /** * @} */ /** @defgroup STM32F4_DISCOVERY_IOE_Private_Functions * @{
in „STM32F4 Touch Display Interrupt“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
16.10.2014_Entwurf.pdf
ADC14 ADC4 / PA4 21 PA5 5 PC1 5 PA9 PC6 37 PC5 / ADC15 ADC5 / PA5 22 PA6 6 PC2 6 PC9 PC7 38 PC6 / I2S2_MCK ADC6 / PA6 23 PA7 7 PC3 7 PC8 PC8 39 PC7 / I2S3_MCK ADC7 / PA7 41 PA8 8 8 PC8 USART1_CK / PA8 9 PA0 9 PC7 PC9 40 PC9 USART1_TX / PA9 42 PA9 10 PA1 10 PC6 PC10 51 PC10 / I2S3_CK USART1_RX / PA10
in „Interesse an einer Sammebestellung STM32 Breakoutboards?“ · Markt ·
-
PDF
16.10.2014_Entwurf_2.pdf
ADC14 ADC4 / PA4 21 PA5 5 PC1 5 PA9 PC6 37 PC5 / ADC15 ADC5 / PA5 22 PA6 6 PC2 6 PC9 PC7 38 PC6 / I2S2_MCK ADC6 / PA6 23 PA7 7 PC3 7 PC8 PC8 39 PC7 / I2S3_MCK ADC7 / PA7 41 PA8 8 8 PC8 USART1_CK / PA8 9 PA0 9 PC7 PC9 40 PC9 USART1_TX / PA9 42 PA9 10 PA1 10 PC6 PC10 51 PC10 / I2S3_CK USART1_RX / PA10
in „Interesse an einer Sammebestellung STM32 Breakoutboards?“ · Markt ·
-
PDF
17.10.2014_Entwurf_3.pdf
ADC14 ADC4 / PA4 21 PA5 5 PC1 5 PA9 PC6 37 PC5 / ADC15 ADC5 / PA5 22 PA6 6 PC2 6 PC9 PC7 38 PC6 / I2S2_MCK ADC6 / PA6 23 PA7 7 PC3 7 PC8 PC8 39 PC7 / I2S3_MCK ADC7 / PA7 41 PA8 8 8 PC8 USART1_CK / PA8 9 PA0 9 PC7 PC9 40 PC9 USART1_TX / PA9 42 PA9 10 PA1 10 PC6 PC10 51 PC10 / I2S3_CK USART1_RX / PA10
in „Interesse an einer Sammebestellung STM32 Breakoutboards?“ · Markt ·
-
PDF
20.10.2014_Entwurf_4.pdf
ADC14 ADC4 / PA4 21 PA5 5 PC1 5 PA9 PC6 37 PC5 / ADC15 ADC5 / PA5 22 PA6 6 PC2 6 PC9 PC7 38 PC6 / I2S2_MCK ADC6 / PA6 23 PA7 7 PC3 7 PC8 PC8 39 PC7 / I2S3_MCK ADC7 / PA7 41 PA8 8 8 PC8 USART1_CK / PA8 9 PA0 9 PC7 PC9 40 PC9 USART1_TX / PA9 42 PA9 10 PA1 10 PC6 PC10 51 PC10 / I2S3_CK USART1_RX / PA10
in „Interesse an einer Sammebestellung STM32 Breakoutboards?“ · Markt ·
-
Datei
simple_server.c
ADUC7026 **********************************************/ #include "..\main\include.h" #define PSTR(s) s u8 st = 1; //extern void delay_ms(u8 ms); // please modify the following two lines. mac and ip have to be unique // in your local area network. You can not have the same numbers in // two devices:
in „Webpage Webserver“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f30x_gpio.c
GPIO_AF_1: OUT, TIM2, TIM15, TIM16, TIM17. * @arg GPIO_AF_2: COMP1_OUT, TIM1, TIM2, TIM3, TIM4, TIM8, TIM15. * @arg GPIO_AF_3: COMP7_OUT, TIM8, TIM15, Touch. * @arg GPIO_AF_4: I2C1, I2C2, TIM1, TIM8, TIM16, TIM17. * @arg GPIO_AF_5: IR_OUT, I2S2, I2S3, SPI1, SPI2, TIM8, USART4, USART5 * @arg GPIO_AF_6: IR_OUT, I2S2, I2S3, SPI2, SPI3, TIM1, TIM8 * @arg GPIO_AF_7: AOP2_OUT, CAN, COMP3_OUT, COMP5_OUT, COMP6_OUT, USART1, * USART2, USART3. * @arg GPIO_AF_8: COMP1_OUT, COMP2_OUT, COMP3_OUT, COMP4_OUT, COMP5_OUT, * COMP6
in „Probleme mit dem STM32F3Discoery, mal wieder.“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Adapter_STM_Mini.pdf
1 2 3 4 5 6 Adapter für STM32_MinDevelopmentBoard über eine 26p-Buchse auf ein LCD Display WCG12864B6FSDEWG https://www.pollin.de/p/grafik-display-w-display-wcg12864b6fsdewg-gdsc-ff-12864wm-64-121146 A A FH12-26S-0.5SH X1-1 NCS1
in „LCD von Pollin“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb.c
define physEpIntOut 3 /* Achtung: Die folgende Sonderlocke bezüglich der Speicher-Lücken gilt nicht für STM32F303xD and xE! Layout des USB RAM's (512 Bytes) ================================ Der RAM geht aus Sicht der CPU von 0x40006000 bis 0x400063FF, also 0x400 Bytes gleich 1024 Bytes und das Layout ist
in „An W.S.: Läuft deine USB Implementierung auch auf STM32F303?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
core.pdf
8 SWCLK 1 2 SWDIO 43 PB7 PA7 17 0 2 1 45 29 R .5 VCC3_ISO RESET_STM32 3 4 PB8 PA8 1 10k D2001 VCC3_ISO 46 PB9 PA9 30 LED_OUT R2009 GND_ISO GND2 21 PB10 PA10 31 SWO_PA10 10k LED_Dual_AACC GND 22 32USB-
in „Review Eierlegende Wollmilchsau“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
catalog.pdf
Headers and Wire Housings [Desc]: Conn Unshrouded Header HDR 4 POS 1.27mm Solder ST SMD T/R MPN: IL-Z-8S-S125C3 [ID]: 000245 [Price]: 0.08 USD [QTY]: 6 [Category]: Headers and Wire Housings [Desc]: Hsg, Conn, Board to Cable, Cable Socket, 8 Cont, SMT, IL-Z Series, 1.25mm Pin-Spng MPN: S6B-PH-K-S (LF)(SN
-
PDF
catalog.pdf
Unshrouded Header HDR 4 POS 1.27mm Solder ST SMD T/R Page 44/105 Bauteileliste vom 12.08.2022 MPN: IL-Z-8S-S125C3 [ID]: 000245 [Price]: 0.08 USD [QTY]: 6 [Category]: Headers and Wire Housings [Desc]: Hsg, Conn, Board to Cable, Cable Socket, 8 Cont, SMT, IL-Z Series, 1.25mm Pin-Spng MPN: S6B-PH-K-S (LF)(SN
-
PDF
catalog-3.pdf
Unshrouded Header HDR 4 POS 1.27mm Solder ST SMD T/R Page 44/105 Bauteileliste vom 12.08.2022 MPN: IL-Z-8S-S125C3 [ID]: 000245 [Price]: 0.1102 USD [QTY]: 6 [Category]: Headers and Wire Housings [Desc]: Hsg, Conn, Board to Cable, Cable Socket, 8 Cont, SMT, IL-Z Series, 1.25mm Pin-Spng MPN: S6B-PH-K-S (LF)
-
Datei
main.c
#define TI_1ms 1 #define TI_10ms (TI_1ms * 10) #define TI_100ms (TI_10ms * 10) #define TI_1s (TI_100ms * 10) #define true 1 #define false 0 /* Includes ------------------------------------------------------------------*/ #include "stm32l4xx_hal.h" //#include "usb_device.h" TIM_HandleTypeDef
in „STM32L4 Disco-Board CPU arbeitet nicht korrekt?!“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
include "usbd_desc.h" #include "usbd_cdc_vcp.h" //Library config for this project!!!!!!!!!!! #include "stm32f4xx_conf.h" /** @addtogroup STM32F4-Discovery_Demo * @{ */ /* Private typedef -----------------------------------------------------------*/ /* Private define --------------------------------------
in „STM32F4 - Virtual Com Port (CDC)“ · 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
simple.s
@ Simple(s) Beispiel @ GPIO register map is similiar to STM32F4 chips. @ -> register boundary address pp. 65 in DM00031020.pdf .equ BIT0, 0x00000001 .equ BIT1, 0x00000002 .equ BIT2, 0x00000004 .equ BIT3, 0x00000008
in „STM32CubeIDE Debug View, Threads, Breakpoints“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f7xx.h" #include "stm32f769i_discovery.h" #include "stm32f769i_discovery_lcd.h" // LCD specific configurations #define LAYER0_ADDRESS (LCD_FB_START_ADDRESS) // DMA specific configurations #define DMAx_CLK_ENABLE
in „SPDIF empfangen per DMA mit einem STM32F769“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
eeprom.c
#include <stdlib.h> #include <stdio.h> #include <string.h> #include "STM8S103F3.h" // ************************************************************ // Change this define to 1 to see watchdog reset #define WATCHDOG 1 // *****************************************************
in „STM8S103: EEPROM-Write nach Watchdog-Reset verursacht CPU-Lockup ?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
------------------------------------------------ // SPI support functions // SPI transfer Byte uint8_t spi1_tx(uint8_t tx) { uint8_t tmp_rx = 0; // write data to be transmitted to SPI *(__IO uint8_t *) spixbase = tx; while( !(SPI1->SR & SPI_I2S_FLAG_TXE) ); // wait until transmit complete while( !(SPI1->SR & SPI_I2S_FLAG_RXNE) ); // wait until receive complete tmp_rx = *(__IO uint8_t *) spixbase; // return received data from SPI return ( tmp_rx ); } // stolen from ST library for 8bit SPI writes void get_spixbase
in „SPI-RAM-Bank an STM32F0-Discovery - write, kein read“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
EndResult_Schematic.pdf
1 2 3 4 5 6 7 8 9 A A K O B uController L D B C S S VCC VCC VCC VCC GND VCC VCC VCC VCC VCC R3 9 100k▯' 4 L1 H1 1 PB3 E VSSSMPS 48 15uH PZ254V-11-04P_C2691448 SDA 2 PB4 VLXSMPS 47 4 3 PB5 VDDSMPS 46 4 3 PB7 4 PB6 VFBSMPS
in „STM32WLE5CCU6 LoRa-Antennenendesign review“ · HF, Funk und Felder ·
-
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
adc_test.c
/* ------------------------------------------------------- adc_test.c MCU : STM8S103F3 Takt : interner Takt 16 MHz 19.05.2016 R. Seelig ------------------------------------------------------ */ #include "stm8s.h" #define u_ref 331ul // gemessene Betriebsspg.: 3.31 V ( * 100 ) #
in „STM8 und ADC“ · Mikrocontroller und Digitale Elektronik ·