-
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(DS18B20_PORT, DS18B20_BIT) //ÐèÒªÐÞžÄÏà¹ØÖµ #define DIR_1WIRE_IN() {DS18B20_PORT->CRH &= 0xFFFFFFF0;DS18B20_PORT->CRH |= 0x00000004;} #define DIR_1WIRE_OUT() {DS18B20_PORT->CRH &= 0xFFFFFFF0;DS18B20_PORT->CRH |= 0x00000003;} #define CLR_OP_1WIRE() GPIO_ResetBits(DS18B20_PORT, DS18B20_BIT)
in „STM32 DS1820“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.cpp
#include "mbed.h" // global vars, used in ISR volatile int timeStart = 0; volatile int timeNow = -1; volatile int interruptCounter = 0; DigitalOut led1(LED1, 1); // onboard LED D2 1: off, 0: on DigitalOut led2(LED2, 1); // onboard LED D3 1: off, 0: on // // resources for
in „STM32F407 OnePulse Timer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ds18b20.c
---------------------------------------------------------------*/ #define _DS18B20_LOCAL #include "stm32f10x_lib.h" #include "ds18b20.h" #include "Param.h" #include <string.h> #include <stdio.h> #include <stdlib.h> char Temperature[10]="00.0"; char read_write_buffer[50]; void delay_nus (vu32 nCount)
in „STM32 DS1820“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test.c
#include "stm32f10x_conf.h" #include <inttypes.h> #include <stdarg.h> #include <math.h> #define BAUDRATE 9600 void Usart1_Init (void); void UsartPutC (char c); char UsartGetC (void); void putS (char *s); void printfTiny
in „EMBITZ math.h“ · 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 ·
-
PDF
an4545-vl6180x-basic-ranging-application-note-stmicroelectronics.pdf
Serial pc(SERIAL_TX, SERIAL_RX); // set-up serial to pc I2C i2c(I2C_SDA, I2C_SCL); // Set up I²C on the STM32 NUCLEO-401RE #define addr (0x52) // I²C address of VL6180 shifted by 1 bit //(0x29 << 1) so the R/W command can be added /////////////////////////////////////////////////////////////////// // Split
in „STM32F1 Probleme mit Frings I2C-Bus Routine“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usbd_storage_if.c
capacity related *****/ extern FATFS *pfs; extern DWORD fre_clust; /* USER CODE END PV */ /** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY * @brief Usb device. * @{ */ /** @defgroup USBD_STORAGE * @brief Usb mass storage device module * @{ */ /** @defgroup USBD_STORAGE_Private_TypesDefinitions * @brief Private
in „ARM [STM32] microSD SPI USB Massenspeicher“ · 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 ·
-
PDF
Schematic_Smart_Greenhouse_Smart_Greenhouse_20200410163337.pdf
ESP 34 15 P34 RX 34 B 3 SCL SCL ESP SCL 4 ESP SCL 4 SDA 14 P35 P21 33 SDA 5 ADDR ESP SDA ESP SDA 13 P32 GND 32 GND 12 P33 P19 31 ESP 25 11 P25 P18 30 ESP 26 10 P26 P5 29 ESP SCL ESP 27 9 P27 P17 28 ESP 14 8 P14 P16 27 Moisture Sensor Relais 230V ESP 12 7 P12 P4 26 ESP SDA GND 6 GND P0 25 Soil Moisture
in „ESP 32 Schaltung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
objdump.txt
; 0x24 8000410: f04f 0300 mov.w r3, #0 8000414: 623b str r3, [r7, #32] uint32_t integerdivider = 0x00; 8000416: f04f 0300 mov.w r3, #0 800041a: 61fb str r3, [r7, #28] uint32_t fractionaldivider = 0x00; 800041c
in „STM32F4 HardFault Interrupt bei stdlib Funktionen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
simple_server.c
} if (*str <0x3a && *str> 0x2f) { // is a ASCII number, return it return(*str - 0x30); } return((u8)-2); } // prepare the webpage by writing the data to the tcp send buffer /* buf on_off¿ª¹Ø */ u16 print_webpage(u8
in „Webpage Webserver“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
//Includes #include "stm32f10x.h" // Device header #include "cmsis_os.h" // ARM::CMSIS:RTOS:Keil RTX //User function prototypes void clockinit(void); void Peripheral_Init(void); void motorinit(void); void timer1_init(void);
in „STM32F100 - Timer2_Channel3“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usart.c
unsigned long baudrate) { RCC->APB2ENR |= RCC_APB2ENR_IOPAEN; //enable GPIOA clock GPIOA->CRH &= ~(0x00F0); //clear PA.9 configuration-bits GPIOA->CRH |= (0x0BUL << 4); //Tx (PA9) - alt. out push-pull GPIOA->CRH &= ~(0x0F00); //clear PA.10 configuration-bits GPIOA->CRH |= (0x04UL << 8); //Rx (PA10)
in „[STM32] CMD0 liefert immer 0xFF zurück“ · 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
i2c.cpp
SUCH DAMAGE. * * ====================================================================*/ #include <stm32f10x.h> #include <i2c.h> I2C::I2C(int nr) { if (nr==1) I2CX=I2C1; if (nr==2) I2CX=I2C2; } void I2C::DelayuS(uint32_t uS) { uint32_t CyclestoLoops; CyclestoLoops = SystemCoreClock; if (CyclestoLoops
in „CubeMX und HAL - I2C hängt sich auf“ · 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
ffconf.h
------------------------------------------------------------*/ #ifndef _FFCONFIG #define _FFCONFIG 0x007E /* 8255 Revision ID */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" /*-----------------------------------------------------------------
in „elm-chan FatFS“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test.c
#include <stdint.h> #include <stm32f1xx.h> #define GPIO_NUMBER 16U #define __IO volatile /*!< Defines 'read / write' permissions */ #define IS_GPIO_PIN_ACTION(ACTION) (((ACTION) == GPIO_PIN_RESET) || ((ACTION) == GPIO_PIN_SET)) #define
in „Alternativen zu C, C++ auf ARM cortex M?“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Schaltplan eines Easy PDK Programmers
1k 1,8n 47u 1N5817 8 330u +5V 1 8 23 35 47 VssA Vss +5V 9 24 36 48 Vdd +3.3V 100n 100n 100n USB +5V 32 22 USB_DM 22 D - 33 23 USB_DP 23 D + 48 GND STm32F072Cxxx TQFP-48 5 OSC in 8 8 MHz 6 OSC out 22p PB7 41 43 PB6 42 PB4 40 PB3 39 PA15 44 Boot0 PA4 NBST 14 18 reset 7 100n +3.3V PC15 15 19 PA5 PB1 PA0 PFS-Sockel 16 15 14 13 12 11 10 9 B3 B2 B1 B0 A4 A3 GND B4 B5 B6 A7 A6 A5 1 2 3 4 5 6 7 8 Vdd AMS 1117-3.3 +5V IN OUT +3.3V 220u 100n 100u 10u +5V 8 LM358.1 4 1 2 270k 2,2k 20k 100n 270k 6,8k 22k 20k 100n LM358.1 Power on LED
in „USB Problem bei STM32F072C8“ · Mikrocontroller und Digitale Elektronik · · Schaltpläne
-
Bild
Fritzing-Schaltplan mit STM32F411RE und LCD-Display
ILI9341 2.2" GND 3.3V LCD CS > B10 0.47µF LCD Reset > B4 LCD A0 > B5 57kOhm total LCD MOSI > A10 SD CS > A9 LCD SCK > B0 SD MOSI > B15 LCD MISO > unused SD CS > PC7 Flash CS > unused Up button > A8 Down button > C1 C13 > Left button (blue on board button) STM32F411RE
in „Signalplotter mit STM32, LCD und SD Karte - ähnlich einem Scope“ · Projekte & Code · · Screenshots
-
Datei
main.c
#include <stm32f10x.h> #include <stdint.h> void delay(uint16_t msec) { for (uint32_t j=0; j<5000*msec; j++) { asm volatile ("nop"); } } void SystemInit(void) { // 64Mhz using the HSI Oscillator WRITE_REG(RCC->CFGR
in „STM32 falsche Taktfrequenz“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd_routines.h
#ifndef LCD_ROUTINES_H #define LCD_ROUTINES_H #include "stm32f4xx_gpio.h" #include "time.h" #ifndef F_CPU #define F_CPU 3686400 #endif #define LCD_PORT GPIOD #define LCD_DDR DDRD #define LCD_DB GPIO_Pin_0 #define LCD_RS GPIO_Pin_4 #define LCD_EN GPIO_Pin_5 #
in „Anag Vision gibt keine Zeichen aus“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
diskio.c
#include "stm32f10x_conf.h" #include "diskio.h" /* PA4 : MMC_CS Out PC4 : MMC_CD In SPI 1 ======================= PA5 : MMC_SCLK Out PA6 : MMC_DO Out PA7 : MMC_DI In */ #define _BV(x) (1 << (x)) #define CS_PIN GPIO_Pin
in „STm32F103: Beispielcode der Chan FatFs zum Laufen bekommen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ds18b20.h
DS18B20_H_ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x_lib.h" #define DQ_PIN GPIO_Pin_0 #define DQ_GPIO_PORT GPIOC #define DQ_GPIO_CLK RCC_AHB1Periph_GPIOC #define DQ_PIN_WRITE(x) ((x) ? (GPIO_SetBits(DQ_GPIO_PORT,DQ_PIN)) : (GPIO_ResetBits(DQ_GPIO_PORT,DQ_PIN)) ); #define DQ_PIN_READ ((GPIO_ReadInputDataBit(DQ_GPIO_PORT,DQ_PIN))&0x01) extern void onewire_reset(void); extern void onewire_write(u8 data); extern u8 onewire_read( void ); extern float ds18b20_read(void); extern void delay_us(vu32 nCount); extern void delay_ms(u16 time_ms
in „STM32 DS1820“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
PAN1555__ENW89815A__Datasheet.pdf
-20,0 >0 ≥-20 dBm 8DPSK C/I co-channela) 6 11 ≤ 11 dB a) Adjacent channel selectivity C/I 0 = f + 1MHz -5 0 ≤ 0 dB a) Adjacent channel selectivity C/I 0 = f - 1MHz -5 0 ≤ 0 dB a) Adjacent channel selectivity C/I 0 ≥ f + 2MHz -38 -30 ≤ -30 dB a) Adjacent channel selectivity C/I 0 ≤ f - 2MHz -22 -20 ≤ -20 dB a) Adjacent channel selectivity C/I 0 ≥ f + 3MHz -42 -40 ≤ -40 dB Adjacent channel selectivity C/I 0 ≤ f
in „Bluetooth-Modul "BlueMod+P25" von Stollmann - Ersatztyp“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
RDA5851S.pdf
offset LW 1 0 0 1 1 rx ry offset LWPC 1 0 1 1 0 rx offset LWSP 1 0 0 1 0 rx offset MFHI 1 1 1 0 1 rx 0 0 0 1 0 0 0 0 MFLO 1 1 1 0 1 rx 0 0 0 1 0 0 1 0 MOVEmt32 0 1 1 0 0 1 0 1 r32(2:0) r32(4:3) rz MOVEmf32 0 1 1 0
-
PDF
Minilabortisch.pdf
Beispielmodule Spannungsversorgung Bzw. Für anderes wenn stationär Z.B. die DSO138 Oszis e 12V u 2A t F Evtl. Isolierter DC/DC Wandler l Fuse und Linearregler und doppelter Tiefpass P i 9V f 2A a n Fuse Staubfilter e Staubfilter r 19V r 5A 120 mm Lüfter 5V k 120 mm Lüfter 2A h K Fuse t l m E 10,1 cm d
in „Mobiler modularer Microlabortisch in Brotbüchse“ · Mechanik, Gehäuse, Werkzeug ·
-
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)
in „CortexM3 include problem“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
TDA-884.pdf
L F V 3 O N . R D K R R - Y Q + / V O R P A A O S L ( 2 C E E U P C A E C Ó 1 + V S L E B D 9 F S 0 U 4 N 6 H 2 I 0 S 2 P R G F C E 5 R E O E I E T A D 1 E 5 S O I N R / C C 5 V N t F T A SE E D Y 1 P D
in „PAL-Röhren TV auf NTSC umbauen“ · Analoge Elektronik und Schaltungstechnik ·
-
Bild
Schaltplan mit STM32F030F4P6 Mikrocontroller
3, 2, 1, GND, Q2, BSS138PW, 3, 2, 1, GND, Q3, BSS138PW, 3, 2, 1, GND, Q4, BSS13, 3, 2, 1, GND, U2, STM32F030F4P6, PB1, PA0, PA1, PA2, PF0-OSC_IN(PF0), PA3, PF1-OSC_OUT(PF1), PA4, PA5, PA6, PA7, PA8, PA9, PA10, PA13(SWDIO), PA14(SWCLK), NRST, BOOT0, VSS, VDD, VDDA, R2, 270, D2, LOR976, R3, 10k, C3, 100n
in „STM32-Schaltplan so in Ordnung?“ · Mikrocontroller und Digitale Elektronik · · Schaltpläne
-
Datei
main.c
#include "stm32f4xx_conf.h" #define MAX_BUFFER_LENGTH 12 //Maximale Receive-Buffer-Länge volatile char received_string[MAX_BUFFER_LENGTH - 1]; //Receive-String-Buffer void Delay(__IO uint32_t nCount) { while(nCount
in „ARM Einstieg - Wie weitermachen?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Touch.c
-----------------------------------*/ #include "stm32f10x.h" #include "hardware.h" #include "Touch.h" /* Private typedef -----------------------------------------------------------*/ /* Private define -------------------------------------------------
in „STM32 Interruptproblem - Interrupt geht, aber Main nicht -“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Leiterplatten-Layout eines ESP-12 STM32F103C8T6 Projekts
SPK SPK +5V GND R L BOCT0 R17 1k ESP - 12 STM32F103C8T6 A11 A12 A15 B1 B12 B14 C14 C15 3V5 GND IC IO Q1 DCF LED1 DS1820 R15 100R 28 68 GND PIN 3V5 DS1820 R10 82 BS170 Q2 IC2 LM358 R9 3k R8 LED DCF 100nF R3 100R IC2 R2 10k R14 10k R16 100R R12 10k R13 10k R2 16k R4 4.7uF R7 10k R1 1k R5 100 R6 1k 4.7uF 5V RX TX GND PROG RUN USER WPS LED Power S2 S1 C3 100nF BAT43 IRF9310 16 1 2 GND +5V WS2812
in „WordClock mit WS2812“ · Projekte & Code · · Layouts
-
Datei
GPIO_INI.c
#include <STM32L1XX.h> #include <stdio.h> #include "GPIO_INI.h" void GPIO_INI() { //Enable Clocks für die Ausgänge RCC->AHBENR |= RCC_AHBENR_GPIOBEN; RCC->AHBENR |= RCC_AHBENR_GPIOAEN; //Operation Mode Register /
in „STM32L152RC HSI“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
spma014.pdf
BASE; typedef short BASE; BASE foo(BASE last, BASE x, BASE y) BASE foo(BASE last, BASE x, BASE y) { { 0: 2300 movs r3, #0 0: f04f 0c00 mov.w ip, #0; 0x0 2: e002 b.n a <foo+0xa> 4: e004 b.n 10 <foo+0x10> BASE i; BASE i; for (i = 0; i < last; i++) for (i = 0; i < last; i++) x += (y * x); x += (y * x); 4: fb02 1101 mla r1, r2, r1, r1 6: fb02 1301 mla r3, r2, r1, r1 8: 3301 adds r3, #1 a: f10c 0c01 add.w ip, ip, #1 ; 0x1 a: 4283 cmp r3, r0 e: b219 sxth r1, r3 c: dbfa blt.n 4 <foo+0x4> 10: fa0f f38c sxth.w r3, ip e: ebc2 0001 rsb r0, r2, r1 14: 4283 cmp r3, r0 return(x-y); 16: dbf6 blt.n
in „ARM Cortex & GCC: Worauf achten für "optimalen" Code?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
hwinfop14s.txt
/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN0676:00/0018:04F3:3195.0001/input/input13/mouse0 dev = 13:32 input device: bus = hid, bus_id = 0018:04F3:3195.0001 driver = hid-multitouch path = /devices/pci0000:00/0000
in „Lenovo Thinkpad P14s (Intel) freeze beim Steckerziehen“ · PC Hard- und Software ·
-
Datei
main.c
prototypes -----------------------------------------------*/ /* USER CODE END PFP */ /* USER CODE BEGIN 0 */ uint16_t pcm_sound[32] = { 0x39,0xFB,0x35,0xFB,0xE2,0xF9,0xE5,0xF9,0xDF,0xFB,0xDE,0xFB,0xDA,0xFF,0xD9,0xFF, 0xEB,0x02,0xEE,0x02,0xF8,0x02,0xF3,0x02,0x33,0x00,0x38,0x00,0x07,0xFD,0x03,0xFD, }; //!
in „Probleme mit PCM1774 I2S DAC“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Forum für Mikrocontroller und digitale Elektronik Übersicht
24 12.07.2025 15:22 Hilfe bei Reparatur BBC Goertz M2031 Multimeter Markus 13 12.07.2025 13:37 Re: STM32CubeMX F103 Assemblerprogramm Bernd S. 2 12.07.2025 13:09 Arduino: page-write in I2C eeprom verliert sporadisch ein Byte (1, 2) Kai 221 12.07.2025 12:10 Arduino + Stepper + AccelStepper? Tom 3 12.07.2025
in „einzelne Threads ausblenden?“ · www.mikrocontroller.net · · Screenshots
-
Bild
Pinbelegung STM32F030F4Px TSSOP20
BOO.. PF0.. PF1.. NRST VDDA PA0 PA1 PA2 PA3 PA4 PA14 PA13 PA10 PA9 VDD VSS PB1 PA7 PA6 PA5 GPIO_Output GPIO_Input I2C1_SDA I2C1_SCL STM32F030F4Px TSSOP20 ST
in „STM32-Schaltplan so in Ordnung?“ · Mikrocontroller und Digitale Elektronik · · Diagramme
-
Datei
oled.c
* minimum of 1029 byte SRAM! **************************************************** * * * adapted to STM8S105 * */ /* Standard ASCII 6x8 font */ #include "oled.h" static const uint8_t ssd1306oled_font6x8 [] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // sp 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, // ! 0x00, 0x00
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
PDF
BU208D.pdf
0.185 0.193 C 1.17 1.37 0.046 0.054 D 2.5 0.098 E 0.5 0.78 0.019 0.030 F 1.1 1.3 0.043 0.051 G 10.8 11.1 0.425 0.437 H 14.7 15.2 0.578 0.598 L2 – 16.2 – 0.637 L3 18 0.708 L5 3.95 4.15 0.155 0.163 L6 31
in „Qualität heutiger Transistoren“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
main.h
#endif /* Includes ------------------------------------------------------------------*/ #include "stm32f0xx_hal.h" /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ #include "taste_yt_remote.h" #include "taste_yt_remote1.h" /* USER CODE END
in „Programmierung - Doppelbelegung einer Taste“ · Mikrocontroller und Digitale Elektronik ·
-
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
uart.c
#include <stdio.h> #include <stdint.h> #include "stm32.h" #include "core_cm3.h" #include "main.h" #include "gpio.h" #include "uart.h" #include "rx_buffer.h" volatile char linebuf[120] = {0}; volatile int lbufcnt=0, lbuflen=0; void uart1_init(int baud)
in „[Cortex-M3] Problem mit dem UART“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
kicad_8450_dcm_liste_neu_v3.pdf
, 256K Flash, 32K RAM, 48MHz, CortexM0+ SAML21E15B-A TQFP32, 32K Flash, 4K RAM, 48MHz, CortexM0+ SAML21E15B-M QFN32, 32K Flash, 4K RAM, 48MHz, CortexM0+ SAML21E16B-A TQFP32, 64K Flash, 8K RAM, 48MHz, CortexM0+ SAML21E16B-M
in „KiCAD Eeschema, Bibliotheksdokumentation *.dcm als PDF-Datei“ · Platinen ·
-
Datei
linker.ld
--------------------------------------------- * Linker script for running in internal FLASH on the STM32F407VG *----------------------------------------------------------------------------*/ OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") OUTPUT_ARCH(arm) SEARCH_DIR(.) /* Memory Spaces Definitions */ MEMORY { ROM (rx) : ORIGIN = 0x08000000, LENGTH = 1024K RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 128K CCRAM (rwx) : ORIGIN = 0x10000000, LENGTH = 64K } /* Linker script to place sections and symbol values. Should be used together
in „STm32Fxxx: Kleiner Gefallen vom einem Profi erbeten“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
controller.pdf
Rev: KiCad E.D.A. kicad (5.1.5)-3 Id: 2/3 1 2 3 4 5 6 1 2 3 4 5 6 +3.3V C6 C7 C8 C9 C10 C11 C12 100nF 100nF 100nF 100nF 100nF 10uF 1uF +3.3V C13 GND A SW1 100nF A GND SW_Push 9 2 8 4 3 1 1 3 4 6 1 7 T D D D D A 14 RESET NRST B V V V V D D PA0 T1 V V PA1 15 Y-MAX J12 +3.3V 60 16 BOOT BOOT0 PA2 X-MAX 3
in „mp2451 funktioniert nicht korrekt“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
SimpleSoftSerial.ino
// print with manual made software serial the // by the user button selected blinking led // STM32F4 Discovery #define SOFTSERIAL_BAUDRATE 115200 #define SOFTSERIALPIN_TX PC1 #define USERBUTTON PA0 #define GREENLED PD12 #define ORANGELED PD13 #define GREDLED PD14 #define BLUELED PD15 #define REDLEDOTGOVERCURRENT
in „STM32F4 Discovery Arduino“ · 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 ·
-
PDF
LGP42-10LF_EAY60869402_PLHF-L923A.pdf
.015uF 37 1 38 1 0 RN 32FHD 22pF 54pF R R6 3 V OPTION:N.C LGD 0.047uF0.01uF 0.015uF.015uF R 37FHD 22pF 54pF 0.047uF0.015uF0.015uF 0.015uF 2 p V 42FHD 22pF 54pF 0.047uF0.015uF0.015uF 0.015uF 3 8 0 100V C 6 5 37FHD 5pF 39pF 0.056uF 4700pF5600pF 2200pF AUO Module Inch R308 R322 R323 R325 R327 2 42FHD 5pF 39pF 0.047uF 5600pF5600pF 5600pF R341 1N4148W 3 0 32HD 3.9K/F6.2K/F 6.2K/F8.2K/J 10K/J 0 D302 R 1 32FHD 22pF 39pF
in „LG Inverter Kapazitator abgebrannt“ · Analoge Elektronik und Schaltungstechnik ·