-
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(); void InitDAC(); void InitADC(
in „STM32L1 - ADC mit Timertriggerung und EOC-Interrupt hängt sich auf“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <stm32f0xx.h> // Static definitions for data conversion between actual values and SPI output values (1:3 bit ratio) #define SERVALS(B) (0b10010010|(((B)&0x80)>>1)|(((B)&0x40)>>3)|(((B)&0x20)>>5)), (0b01001001
in „The secret of WS2812B“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
adc.c
***** */ /* ---------------------- System Include Files ----------------------------- */ #include "stm32f10x_conf.h" /* ---------------------- Standard Include Files --------------------------- */ #include <stdint.h> #include <stdbool.h> /* ---------------------- Projekt Include Files ---------------
in „EmBitz Debugging Problem mit STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
systick.c
/* System-Tick und Uhrzeit für das STM32F103ZET6-Board */ #include "stdtypes.h" #include "startup.h" #include "m051.h" #include "systick.h" #include "gdi.h" #include "lcd.h" #include "conv.h" long System_Tick; word Ticks; // a 10 ms int
in „STM32 SysTick: Globale Variable“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ds18b20.h
DS18B20_H_ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x_lib.h" #ifndef _DS18B20_LOCAL #define DS18B20_EXTERN extern #else #define DS18B20_EXTERN #endif #define DS18B20_BIT GPIO_Pin_0 #define DS18B20_PORT GPIOC #define READ_DS18B20() GPIO_ReadInputDataBit
in „STM32 DS1820“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
BitBangingTest.c
#include <stdio.h> #include <stdint.h> #include <stdbool.h> #include "stm32f3xx.h" volatile _Bool interruptWarDa; void TIM2_IRQHandler(void) { interruptWarDa = 1; TIM2->SR &= ~TIM_SR_UIF; } // Function to delay in microseconds void Delay(uint32_t x){ RCC->APB1ENR |= RCC_APB1ENR_TIM2EN
in „Bit Banging STM32 - F303RE ohne Library“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Ausschnitt aus einem Datenblatt mit Tabelle und Leiterplatten-Layout
6.4.3 External power supply input 5V_EXT (5 V, 500 mA max) When the STM32H7 Nucleo-144 board is power supplied by EXT (refer to Table 7 and Figure 12), the jumper configuration must be the following: JP2 jumper on pin 5-6 'EXT' Table 7. External power sources: 5V_EXT EXT
in „L7805 überhitzt bei bestimmten Last-Szenarien“ · Analoge Elektronik und Schaltungstechnik · · Screenshots
-
Datei
main.c
#include "stm32f10x_lib.h" #include <stdint.h> GPIO_InitTypeDef GPIO_InitStructure; USART_InitTypeDef USART_InitStructure; ErrorStatus HSEStartUpStatus; void RCC_Configuration(void); void NVIC_Configuration(void); void Delay(vu32 nCount); /******************************************************************************* * Function Name : NVIC_Configuration * Description : Configures Vector Table base location. * Input : None *
in „CortexM3 include problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
// https://www.mikrocontroller.net/topic/513315?goto=6623438#6623438 #include <stdio.h> #include "stm32f0xx.h" #include "usb_vcp.h" // Delay some milliseconds void delay_ms(int ms) { //[ALEX] uint32_t start=systick_count; uint32_t start=HAL_GetTick(); while (HAL_GetTick()-start<ms); } // Called by Assembler
in „STM32 USB Übertragungsproblem mit Code von S.F.“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
atf.pdf
R39 V12 PSMN4R6-60 X1:1 LINK+ X2:5 27R,1W BAV103 F3 C22 C4 6 9 E1 SMA6J33CA 100n 4u7 D3 R 3 PR5/25 STM32L412 V1 V2 V4 X1:5 BC856 X1:4 1 , 4 , X1:3 VDDA 30 PWRON_H R R R R PB7 V5 R3 2 2 E2 +18V +3.3V L1 BC846 +7V PR5/25 N1 5 VDDA 15k MIC5233-3.3 F.B.,0.2A 8 9 9 5 R2 1 IN OUT 3 1 VDD R 3 R 1 V3 6 17 VDD
in „Schaltplan richtig zeichnen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ds18b20.c
/* Includes ------------------------------------------------------------------*/ #include "stm32f10x_lib.h" #include "ds18b20.h" #include "Param.h" #include <string.h> #include <stdio.h> #include <stdlib.h> extern void Delay1(vu32 nTime); char Temperature[10]="00.0"; void delay_nus (vu32 nCount
in „STM32 DS1820“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
USART_Module.c
***************************************************************************************/ #include "stm32f10x_conf.h" #include "USART_Module.h" uint8_t array[]={1,2,3,4,5}; /*******************************************************************************************************************************
in „STM32F1 / USART1 + DMA“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sdcard.c
#include <stm32f10x.h> #include "sdcard.h" #include "utils.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 „Problem FatFS + SPI“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ethernet_application.c
/* * ethernet_application.c * * Created on: Jun 11, 2012 * Author: jan */ #include "stm32f2x7_eth.h" #include "ethernet_application.h" void Ethernet_GPIO_Config(void); uint8_t Ethernet_MACDMA_Config(void); uint32_t Ethernet_Link_PHYIT_Config(uint16_t PHYAddress); void Ethernet_EXTI_Config
in „STM32F207 Ethernet + RMII“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Frequenzzaehler.pdf
Counter und einen ADC und er auch mit sehr netten Features: von TI die MSP430er, von Fujitsu 8, 16 und 32 Bit Con- schluckt nur ca. 3 mA bei 20 MHz Taktfre- troller (wobei ich mit den 32 Bittern sehr gu- quenz - und er hat bei mir bereits bis über 150 MHz messen können. te Erfahrungen gemacht habe), SH,
in „PIC - Frequenzzähler weit über 50 MHz auf die minimalistische Art“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sdcard.c
#include <stm32f10x.h> #include <stdio.h> // snprintf #include "sdcard.h" #include "utils.h" /* MMC/SD command */ #define CMD0 (0) /* GO_IDLE_STATE */ #define CMD1 (1) /* SEND_OP_COND (MMC) */ #define ACMD41 (0x80
in „Problem FatFS + SPI“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
*************************** */ int main(void) { /* Configure the NVIC Preemption Priority Bits for STM-Lib V3.1+ */ NVIC_PriorityGroupConfig(NVIC_PriorityGroup_4); if( NULL == sys_thread_new( "MODBUS_S", vApp1Task, NULL, APP1_TASK_STACKSIZE, APP1_TASK_PRIORITY ) ) { } else if( pdTRUE != xTaskCreate(
in „FreeRTOS + LWIP + UART Interrupt Problem“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ADD9910_Design.pdf
ALTIUMLIMITEDAND MAY BEFREELYDISTRIBUTEDIN WHOLE.NO RIGHTSARE RESERVEDOREXPRESSORIMPLIEDWARANTEEGIVEN. uC - STM32F722RCT6 DDS-AD9910 SDIO A SDO A AD9910 // 1GSp / 14 bit / 3.3VCMOS / Direct DigitalSynthesizer SCLK GND U?A 48 81 RF_ UT1_P01TUO0FRLN PU?04 D0 IOUT PIU?01 NLRFOUT0N PO RF_OUT1_P1 0P main[4D], DDS_Modul_Multiplier
in „PCB -Frequenzrampe 100khz-360 MHz“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
STM32F103C8T6_Mikrocontroller_Schematics.pdf
STM32F103C8T6_Mikrocontroller_Schematics.pdf
in „Arduino Blue Pill & CAN mit SN65HVD230“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F103C8T6_Mikrocontroller_Schematics.pdf
STM32F103C8T6_Mikrocontroller_Schematics.pdf
in „Arduino Blue Pill & CAN mit SN65HVD230“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
Includes ------------------------------------------------------------------*/ #include "main.h" #include "stm32f0xx_hal.h" #include "i2c.h" #include "usart.h" #include "gpio.h" /* USER CODE BEGIN Includes */ #include "Pro.h" //Defines (Buffergrösse, Delaytime) /* USER CODE END Includes */ /* Private variables
in „STM32F0 HardFault bei UART Empfang“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
eth_bsp.c
»¯ÎÄŒþ ****************************************************************************** */ #include "stm32f4x7_eth.h" #include "eth_bsp.h" #include "Param.h" __IO uint32_t EthInitStatus = 0; static void eth_gpio_init(void) { /* ***************************************************************************
in „stm32f4xx lan8720 uip“ · 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 ·
-
Datei
spi.c
struct spi_transaction_s* spi2_queue[SPI2_QUEUE_SIZE]; #endif #endif #endif #ifdef SPI3_ENABLED #ifndef STM32L1XX_HD #error SPI3 isn''t supported by your device. #endif spi_peripheral_t* spi_periph3 = (spi_peripheral_t*) 0; void spi3_trans_end(uint8_t dma_channel_number); void spi3_trans_error(uint8_t dma_channel_number
in „STM32L1xx DMA+SPI: 2 Bugs“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
dogm_spi_3.3V.c
#include <stm32f10x_conf.h> GPIO_InitTypeDef GPIO_InitStructure; void delayLoop() { volatile uint32_t delayCount = 500000; /* volatile to avoid compiler optimization */ while (delayCount > 0) { delayCount--; } } void delayShortLoop() { volatile uint32_t delayCount = 25000; /* volatile to avoid compiler optimization */ while (delayCount > 0) { delayCount--; } } void NVIC_Configuration(void); void sendDataOut(char flag,char data) { /* Select Display
in „EA DOGM162 mit STM32 reagiert nicht mit SPI“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ABX00042-ABX00045-ABX00046-datasheet.pdf
Portenta H7 Collective Datasheet 1 Features 1.1 Microcontroller Component Details Supported boards ST STM32H747XI Processor Dual Core Arm® Cortex®-M7 core at up to All 480 MHz with double-precision FPU and 16K data + 16K instruction L1 cache Arm® 32-bit Cortex®-M4 core at up to 240 MHz with FPU, Adaptive
in „Problem mit der SPI Datenübertragung zwischen einem Arduino Portenta H7 und einem ADS8684 (ADC)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.txt
nc 8 nc nc 9 nc nc 10 nc nc 11 D4 PD0 12 D5 PD1 13 D6 PD2 14 D7 PD3 15 nc nc 16 nc nc */ #include "stm32f4xx.h" uint32_t i; void WriteNibble(char data){ GPIOD->BSRRL |= data; GPIOD->BSRRH |= ~data; GPIOD->BSRRL |= (1<<6); //E=1; for (i=0;i<10000;i++){} //delay GPIOD->BSRRH |= (1<<6); //E=0; for (i=0;
in „STM32: Ich finde einfach keinen Fehler in meinem Code“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
media32.pdf
Controller.SchDoc B B C C Title D D Size Number Revision A4 Date: 18.04.2009 Sheet of File: C:\Altium\media32\media32.SchDoc Drawn By: 1 2 3 4 1 2 3 4 COUA2 V_BAT COUA3 V_USB 4 UA2 BQ24070 15 2 UA3 3 A 2 PIUA2IN OUT PI162015 P I U AIN 0 2 OUTP I U A 3 0 3 VCC A COCT6 PIUA2VREF OUT PIUA2017 1 22 02 110µ I0 COCT4
in „MP3 Player mit Clickwheel und S65“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
bmpm_v2_1c_schematic.pdf
330E R6D D4 YELLOW LED0 A C 74LVC2T45 100n GND GND <- DIR = GND -> DIR = VCC GND MCU TPWR U3 +3V3 STM32F103CBUx R9 +5V 4k7 10 PA0-WKUP/ADC1_IN0/ADC2_IN0/SYS_WKUP/TIM2_CH1/TIM2_ETR/USART2_CTS PB0/ADC1_IN8/ADC2_IN8/TIM1_CH2N/TIM3_CH3 18 1 iSWDIO_DIR iTMS_DIR 11 19 PWR_BR P7 PA1/ADC1_IN1/ADC2_IN1/TIM2_
in „MOSFET Ersatztypen für DMG1024 u. DMG1023 gesucht“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
schaltplan_uC.pdf
VBAT VDDUSB 36 GNDTP27 P 8 12 12 R22 0R EN_5V 2 PC13 VSS_2 35 T P 9 11 11 R23 0R FREI11 3 PC14-OSC32_IN_(PC14) PA13_(JTMS-SWDIO) 34 SWDIO R24 T P 1 1 10 0R FREI12 4 33 FREI1 R26 T 3 2 10 9 R25 0R FREI13_NOT_OSZ OSCIN 5 PC15-OSC32_OUT_(PC15) PA12 32 FRONTLIGHT T 3 3 2 9 8 R27 TP32 OSCOUT 6 PH0-OSC_IN
in „Übersprechen von einem uC-Pin zum Anderen“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
not_fitted_schaltplan_uC.pdf
VBAT VDDUSB 36 GNDTP27 P 8 12 12 R22 0R EN_5V 2 PC13 VSS_2 35 T P 9 11 11 R23 0R FREI11 3 PC14-OSC32_IN_(PC14) PA13_(JTMS-SWDIO) 34 SWDIO R24 T P 1 1 10 0R FREI12 4 33 FREI1 R26 T 3 2 10 9 R25 0R FREI13_NOT_OSZ OSCIN 5 PC15-OSC32_OUT_(PC15) PA12 32 FRONTLIGHT T 3 3 2 9 8 NF7 TP32 OSCOUT 6 PH0-OSC_IN
in „Übersprechen von einem uC-Pin zum Anderen“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
simple_server.c
); plen = fill_tcp_data_p(buf, plen, PSTR("<center><p>")); plen = fill_tcp_data_p(buf, plen, "<h1> STM32 WEBSERVER </h1>"); plen = fill_tcp_data_p(buf, plen, "<h2> STM32F103ZET6 </h2>"); plen = fill_tcp_data_p(buf, plen, "<table border>" ); plen = fill_tcp_data_p(buf, plen, "<thead>"); plen = fill_tcp_data_p
in „Webpage Webserver“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
dma.h
endif #endif #if defined(DMA2_CHANNELS) #if DMA2_CHANNELS == 0 #undef DMA2_CHANNELS #elif !defined(STM32L1XX_HD) #error DMA2 isn''t supported by your device. #else #error DMA2 not supported yet. #endif #endif typedef struct { void (*transfer_ends) (uint8_t dma_channel_number); void (*transfer_error) (uint8_t dma_channel_number); uint32_t PeripheralBaseAddr; /*!< Specifies the peripheral base address for DMAy Channelx. */ uint8_t DIR; /*!< Specifies if the peripheral is the source or destination. This parameter can be a value of @ref
in „STM32L1xx DMA+SPI: 2 Bugs“ · 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 ·
-
PDF
UART-Command-Introduction-EN-1.pdf
); DCV32(0,0 ,spotpear,0); CLR(0); PL(0,0,220,176,1); PS(40,40,3); SBC(1); DCV16(0,32 ,spotpear,2); DIR(0); DCV24(0,0 ,spotpear,0); About above CMD, you can see more detailed introduction later in the article
in „1.8" 128*160 HMI Intelligent Smart UART Serial TFT Display von Spotpear.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main_und_rcc.c
Includes ------------------------------------------------------------------*/ #include "main.h" #include "stm32f10x_conf.h" /* Private typedef -----------------------------------------------------------*/ /* Private define ------------------------------------------------------------*/ /* Private macro -----
in „STM32F1 RTC eine Sekunde generieren“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
FK743M5-XIH6.pdf
U10G2 NC PH1-OSC-OUT PIMCU10J1OS_25M_OUT PD6N IPC10111 PI MCU10P 5 NLC _R0 PI1551IP PD7 C11 PD6 PI15 STM32H743XIH6 11C0PD7MIP FM _D13 PD8D8 IPC10116 PD8 PJ0 PI MCU10N 6 NLC _R1 PJ00 FM _D14 PD9D9 IPC10117 PI MCU10P 6 NLC _R2 PJ11 FM _D15 PD1010 T16 PD9 PJ1 T6 NLC _R3 PJ22 IPC 0116 PD10 PJ2 PI MCU10T 6
in „STM32H743 mit 32MByte externem SDRAM“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test_O1.asm
comment 00000000 l d .debug_frame 00000000 .debug_frame 00000000 l df *ABS* 00000000 obj/cmsis/startup_stm32f407xx.o 0800028a l .text 00000000 LoopCopyDataInit 08000282 l .text 00000000 CopyDataInit 080002a2 l .text 00000000 LoopFillZerobss 0800029c l .text 00000000 FillZerobss 080002d0 l .text 00000000
in „C++ Exceptions mit gcc-arm-none-eabi“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test_O2.asm
comment 00000000 l d .debug_frame 00000000 .debug_frame 00000000 l df *ABS* 00000000 obj/cmsis/startup_stm32f407xx.o 0800028a l .text 00000000 LoopCopyDataInit 08000282 l .text 00000000 CopyDataInit 080002a2 l .text 00000000 LoopFillZerobss 0800029c l .text 00000000 FillZerobss 080002d0 l .text 00000000
in „C++ Exceptions mit gcc-arm-none-eabi“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
PeriphCode.c
#include "stm32f0xx.h" #define SPIBUFFERSIZE 256 char SPIRxBuffer[SPIBUFFERSIZE]; char SPITxBuffer[SPIBUFFERSIZE]; int main() { int i = 0; for(i=0;i<SPIBUFFERSIZE;i++) { SPIRxBuffer[i] = 0x5A; SPITxBuffer[i] = 0xA5
in „STM32F0 SWD LockOut“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
schaltung.pdf
IC1 20 1 4 VCC TXD 5 VCCIO RXD 3 +FT_C1 FT_C2 +FT_C3 19 RTS 11 GND RESET CTS STM32 - UM0919 1x16 DTR 2 GND2 GND VSS 10nF 100nF 4.7uF 27 OSCI DSR 9 NC2 NC1 VDD 5 28 OSCO DCD 10 3V3 5V V0 GND 6 VBAT PB9 RS 4 +D RI VCC_FT&AM PC13 PB8 R/W 3 FT_C4 23 FT_R1 PC14 BOOT E 2 -D CBUS0 22 PC15
-
Datei
fsmc_nand.c
invalid address *******************************************************************************/ u32 FSMC_NAND_WriteSmallPage(u8 *pBuffer, NAND_ADDRESS Address, u32 NumPageToWrite) { u32 index = 0x00, numpagewritten = 0x00, addressstatus = NAND_VALID_ADDRESS; u32 status = NAND_READY, size = 0x00; while
in „BMP Lesen von nand Flasch“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
eGC.pdf
23 P24C709VDDA VSS_1 PII35023 PIIC702VDD_1 VSS_2 PIIC7035 PIIC703VDD_2 VSS_3 PIIC7047 PIIC704VDD_3 STM32L15xxx GND C C D Title D Size Number Revision A4 Date: 04.03.2012 Sheet of File: C:\Users\..\SYSCON_PWR.SchDoc Drawn By: 1 2 3 4 1 2 3 4 A A 1V8 P5P5 PIP501 1 PIP502 2 PIP503 3 SYSCON_I _[ ..15]0 PIP504
in „[Suche] Interessierte(n) an Projekt (ARM/FPGA)“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ETEMB043013XDHAL_-_ver2.pdf
FAdLURECONCINUOUSoriGHTING LCD LUNINANCE izCOMES HiLF OF thE INITIAL VALUE. 5. TIMING CHORACTERhoTICS log tau REFER TO STM32F7u0 DAThnSHEET ou 6. MCU CHARACTERISTICS e ih ITEM IyTERNAEXeERNAL REMARK FLASHM pl64KBB b32 MB NOTETHE FLASH MiMORY strE CAN BE UP TO 128MB gD di gin not er o Em D 02101300-01-02 E MTECHNOLOGIES
in „EDT Display Interface mit STM32F7“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
VitoMirrorCtrl_V1.0.pdf
3 4 5 6 GND GND GND 3 C9 C10 C11 V 3 100 nF 100 nF 4,7 µF + A A R10 3 V 10 kΩ 3 +U2 NRST PWR_FLAG STM32G031K8Tx 4 D D C12 6 V 7 NRST PF2 PA0 LOCK_IN 100 nF 8 PA1 UNLOCK_IN 20 9 PC6 PA2 IGN_IN 2 10 PC14 PA3 FOLD_BUTTON 3 11 PC15 PA4 CURRENT_LEFT 12 GND PA5 CURRENT_RIGHT 15 13 LEFT_SLEEP PB0 PA6 LEFT_EN
in „Hilfe beim KiCad-Layout gesucht: 2-Fach Motorsteuerung (KFZ-Bereich)“ · Platinen ·
-
PDF
VitoMirrorCtrl_V1.0_B.pdf
E.D.A. 10.0.4 Id: 2/7 1 2 3 4 5 6 1 2 3 4 5 6 3 V 3 A + A 3 V 3 +U2 R10 100 nF 100 nF 4,7 µF PWR_FLAG STM32G031K8Tx 10 kΩ 4 C9 C10 C11 D D 6 V 7 NRST NRST PF2 PA0 LOCK_IN 8 C12 PA1 UNLOCK_IN GND GND GND 20 9 100 nF PC6 PA2 IGN_IN 2 10 PC14 PA3 FOLD_BUTTON 3 11 PC15 PA4 CURRENT_LEFT 12 PA5 CURRENT_RIGHT
in „Hilfe beim KiCad-Layout gesucht: 2-Fach Motorsteuerung (KFZ-Bereich)“ · Platinen ·
-
Datei
analogReadSerial.ino
// read analog pin and print it via software serial // STM32F4 Discovery #define ANALOGPIN PA1 #define SOFTSERIAL_BAUDRATE 115200 #define SOFTSERIALPIN_TX PC1 #define USERBUTTON PA0 #define GREENLED PD12 #define ORANGELED PD13 #define GREDLED PD14 #define BLUELED
in „STM32F4 Discovery Arduino“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ADC_Setup.c
#include "stm32f4xx.h" #include "gDef.h" #include "gVar.h" void ADC_Setup(void) { ADC_InitTypeDef ADC_InitStructure; ADC_CommonInitTypeDef ADC_CommonInitStructure; DMA_InitTypeDef DMA_InitStructure; GPIO_InitTypeDef
in „STM32 ADC DMA falsche Interrupt Frequenz“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SRC_Power_Checker.pdf
/Start/P+-/S_HL G n 3 Button1 2 PC13 VSS_3 47 0 C 1 b 2 1 t - 3 46 u u t N a + _ _ Button2 PC14-OSC32_IN PA12 LED_GREEN U I I F S _ _ _ _ _ _ M _ M M M M M M M B B 4 45 Button3 PC15-OSC32_OUT PA11 LED_YELLOW 3. 220Vac supply, 24V 1.25A, 10 Ohm, measure Imos/UDC/Uout/Iout, 5 44 Button4 PF0-OSC_IN PA10
in „STM32G474 Startverhalten“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
CPSignal_Wallbox_mit__C.pdf
= Tastgrad [%] × 0,6 Beispiele: Maximalstrom Tastgrad 6 A 10 % 10 A 16,7 % 16 A 26,7 % 20 A 33,3 % 32 A 53,3 % Oberhalb 85 % gilt eine andere Kennlinie. 5 % ist für High-Level-Kommunikation reserviert und sollte nicht als normale Stromvorgabe verwendet werden. CP-Rückmessung Zusätzlich muss der µC die
in „saubere Rechtecksignalpegelwandlung 0/5V auf +12/-12V“ · Mikrocontroller und Digitale Elektronik ·