-
Datei
main.c
#include "stm32f10x_conf.h" void InitializeLEDs() { RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE); RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); GPIO_InitTypeDef gpioStructure; gpioStructure.GPIO_Pin
in „Timer Interrupt STM32F103“ · 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
STM32F100RB_Reference_Card_Ausschnitt_I2C.pdf
circuit (I C) interface 22 Inter-integrated circuit (I C) interface 2 Low-density value line devices are STM32F100xx microcontrollers where the Flash memory density ranges between 16 and 32 Kbytes. Medium-density value line devices are STM32F100xx microcontrollers where the Flash memory density ranges between 64 and 128 Kbytes. High-density value line devices are STM32F100xx microcontrollers where the Flash memory density ranges between 256 and 512 Kbytes. This section applies to the whole STM32F100xx family, unless otherwise specified. 2 22.1 I C introduction 2
in „I2C an STM32F100RB konfigurieren“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f407vg_flash.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 BKRAM (rw) : ORIGIN = 0x40024000, LENGTH = 4K } /* Linker script to place sections
in „STm32Fxxx: Kleiner Gefallen vom einem Profi erbeten“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f407vg_flash.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 BKRAM (rw) : ORIGIN = 0x40024000, LENGTH = 4K } /* Linker script to place sections
in „STM32F407: Stack ins CCRAM gelegt erzeugt Hard Fault Error“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f407vg_flash.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 BKRAM (rw) : ORIGIN = 0x40024000, LENGTH = 4K } /* Linker script to place sections
in „STm32F103 und F407: Konstanten sicher ins Flash legen?“ · 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 ·
-
Bild
Schaltplan mit STM32F042F6Px und MCP2551-1
D1 B340 12V 3 PWR_FLAG G1 100n GND U4 AMS1117-5.0 +5V 2 C2 100n GND U3 AMS1117-3.3 +3V3 2 C3 100n GND TP2 GND TP7 3V3 TP8 5V U2 MCP2551-1-SN R1 470R TXD RXD CANH CANL Vref Rs VSS PA0 bis PA14 NRST PFD PB1 PBB PA9/PA10 PA13 PA14 U1 STM32F042F6Px DIO
in „STM32F042 gecloned aber verhält sich seltsam“ · Mikrocontroller und Digitale Elektronik · · Schaltpläne
-
Datei
ds18b20.c
/* Includes ------------------------------------------------------------------*/ #include "stm32f10x_lib.h" #include "ds18b20.h" #include "Param.h" #include <string.h> #include <stdio.h> #include <stdlib.h> #define in 1 #define out 0 void delay_us(vu32 nCount) { u16 TIMCounter = nCount; TIM_TimeBaseInitTypeDef
in „STM32 DS1820“ · Mikrocontroller und Digitale Elektronik ·
-
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
stm32f103xb.h
************************************************* */ /** @addtogroup CMSIS * @{ */ /** @addtogroup stm32f103xb * @{ */ #ifndef __STM32F103xB_H #define __STM32F103xB_H #ifdef __cplusplus extern "C" { #endif /** @addtogroup Configuration_section_for_CMSIS * @{ */ /** * @brief Configuration of the Cortex-M3
in „System Workbench für STM32 Anfängerfragen“ · PC Hard- und Software ·
-
Datei
stm32f103x6.h
************************************************* */ /** @addtogroup CMSIS * @{ */ /** @addtogroup stm32f103x6 * @{ */ #ifndef __STM32F103x6_H #define __STM32F103x6_H #ifdef __cplusplus extern "C" { #endif /** @addtogroup Configuration_section_for_CMSIS * @{ */ /** * @brief Configuration of the Cortex-M3
in „System Workbench für STM32 Anfängerfragen“ · PC Hard- und Software ·
-
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 ·
-
Datei
eth_bsp.c
COPYRIGHT 2013 ÀֿƵç×Ó¹€×÷ÊÒ * *ÎÄŒþ£ºeth_bsp.c *×÷ÕߣºÀֿƵç×Ó¹€×÷ÊÒ *ÈÕÆÚ£º2013.12.20 *°æ±Ÿ£ºV1.0 *ÃèÊö£ºeth³õÊŒ»¯ÎÄŒþ ****************************************************************************** */ #include "stm32f4x7_eth.h" #include "eth_bsp.h" #include "Param.h" __IO uint32_t EthInitStatus =
in „stm32f4xx lan8720 uip“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
PCF7936AS.pdf
TO tPROG EEPROM erase/write time 615 TO tIDLE Idle time 80 ms Data Transmission TBIT Bit duration 32 TO TWRP Write pulse width Note 1 4 10 TO T Write pulse repetition time, logic 0 18 22 T LOG_0 O T Write pulse repetition time, logic 1 26 32 T LOG_1 O T Write pulse length, stop condition 36 T STOP O
-
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
/* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" #include "systick.h" #include <stdlib.h> #include <stdio.h> #ifdef __GNUC__ /* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printf set to 'Yes') calls __io_putchar(
in „STM32 can Message“ · 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
Modul2.txt
und einmal im Setup senden 6.0 State Maschine wieder gelöscht und nur noch als Zustandsaenderung programiert */ // -------------------------------------- Umbenenen der STM Pins // Bliotheken //-------------------------------------
in „Mehrere CAN Teilnehmer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f103c8_flash.ld
--------------------------------------------- * Linker script for running in internal FLASH on the STM32F103C8 *----------------------------------------------------------------------------*/ OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") OUTPUT_ARCH(arm) SEARCH_DIR(.) /* Memory Spaces Definitions */ MEMORY { ROM (rx) : ORIGIN = 0x08000000, LENGTH = 64K RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 20K } /* Linker script to place sections and symbol values. Should be used together * with other linker script that defines memory regions
in „uint64_t auf STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32F100_ext.ld
--------------------------------------------- * Linker script for running in internal FLASH on the STM32F103C8 *----------------------------------------------------------------------------*/ OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") OUTPUT_ARCH(arm) SEARCH_DIR(.) ENTRY(_reset) /* Memory Spaces Definitions */ MEMORY { ROM (rx) : ORIGIN = 0x08000000, LENGTH = 256K RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 64K } /* Linker script to place sections and symbol values. Should be used together * with other linker script that defines memory regions
in „uint64_t auf STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f401ce_flash.ld
--------------------------------------------- * Linker script for running in internal FLASH on the STM32F401CE *----------------------------------------------------------------------------*/ OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") OUTPUT_ARCH(arm) SEARCH_DIR(.) /* Memory Spaces Definitions */ MEMORY { ROM (rx) : ORIGIN = 0x08000000, LENGTH = 512K RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 128K } /* Linker script to place sections and symbol values. Should be used together * with other linker script that defines memory regions
in „STM32F103 Bluepill mit 128kb lässt sich nicht flashen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f401cc_flash.ld
--------------------------------------------- * Linker script for running in internal FLASH on the STM32F401CC *----------------------------------------------------------------------------*/ OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") OUTPUT_ARCH(arm) SEARCH_DIR(.) /* Memory Spaces Definitions */ MEMORY { ROM (rx) : ORIGIN = 0x08000000, LENGTH = 256K RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 64K } /* Linker script to place sections and symbol values. Should be used together * with other linker script that defines memory regions
in „STM32F103 Bluepill mit 128kb lässt sich nicht flashen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f103c8_flash.ld.txt
--------------------------------------------- * Linker script for running in internal FLASH on the STM32F103C8 *----------------------------------------------------------------------------*/ OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") OUTPUT_ARCH(arm) SEARCH_DIR(.) /* Memory Spaces Definitions */ MEMORY { ROM (rx) : ORIGIN = 0x08000000, LENGTH = 64K RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 20K } /* Linker script to place sections and symbol values. Should be used together * with other linker script that defines memory regions
in „ROM-Auslastung von C++-Programm reduzieren“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
MKL25Z4.h
< MTB Base Register, offset: 0xC */ uint8_t RESERVED_0[3824]; __I uint32_t MODECTRL; /**< Integration Mode Control Register, offset: 0xF00 */ uint8_t RESERVED_1[156]; __I uint32_t TAGSET; /**< Claim TAG Set Register, offset: 0xFA0
in „Interrupts bei Keil ARM? (KL25Z)“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F407ZET6_sch-1.pdf
▯ 95()▯ 3%▯▯ 3%▯▯ *1' %227▯ 5▯▯ ▯▯ ▯▯ 3%▯▯%227▯ ▯▯ ▯▯ ▯▯ ▯▯ ▯9▯ ▯▯ ▯▯ ▯▯▯5 ▯▯ ▯▯ ▯9 ▯▯ ▯▯ *1' STM32F407ZET6 ▯9▯ ,2B▯▯;▯ ▯9▯ ,2B▯▯;▯ ▯9▯ 4▯ RAM ˖ 192K ▯ ▯ H[WHQG▯ I/O ▯ ▯ 9%$7 FLASH ˖ 512K *1' ▯ ▯ &▯ %$7▯▯& ▯▯▯ %▯ )UHTXHQFH˖ 16M8 Hz &5▯▯▯▯ *1' 3$▯▯:.B83 ▯▯ ▯▯▯ 3(▯ )60&B1%/▯ *1' 3$▯ ▯▯ 3$▯▯:.83▯8▯
in „STM32F407 Black und Arduino“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32.s
/** ****************************************************************************** * @file startup_stm32.s * @author Ac6 * @version V1.0.0 * @date 12-June-2014 ****************************************************************************** */ .syntax unified .cpu cortex-m3 .thumb .global g_pfnVectors
in „Frage an W.S. wegen USB CDC Implementierung STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
extrx.c
define ENABLE_EXTRX_LOG #define EXTRX_NR_CHANNELS 8 #define EXTRX_CH_TRUST 2 #define EXTRX_CH_ROLL 0 #define EXTRX_CH_PITCH 1 #define EXTRX_CH_YAW 3 #define EXTRX_SIGN_ROLL (-1) #define EXTRX_SIGN_PITCH (-1) #define EXTRX_SIGN_YAW (-1) #define EXTRX_SCALE_ROLL (40.0f) #define EXTRX_SCALE_PITCH (40.0f
in „FreeROTS Fehler "AssertFail" durch Befehl xQueueReceive“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Pt100-Vierleiter-Verdrahtungsdiagnose.pdf
F+ – S− PT (~110 Ω) Kreuzpfad A→B S+ – F− PT (~110 Ω) Kreuzpfad A→B Schwellen bei I = 1 mA: SHORT U < 0,2 mV · LOW 0,2–15 mV · PT 80–180 mV · PT1000 0,8–1,2 V · OPEN U ≈ Compliance (> 2,5 V) oder I ≈ 0
in „ESP 32 oder Nano“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
error.txt
mbed-ce-hello-world/mbed-os/events/./include/events/EventQueue.h:775:9: note: candidate: 'template<class F> int events::EventQueue::call(F)' [build] 775 | int call(F f) [build] | ^~~~ [build] /home/jojo/projects/mbed-ce-hello-world/mbed-os/events/./include/events/EventQueue.h:775:9: note: template argument
in „C++: Callback Funktion kann nicht aufgelöst werden“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
simple_server.c
; } i++; str++; } 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
stm32h7xx_hal_fdcan.c
FDCAN_ELEMENT_MASK_DLC ((uint32_t)0x000F0000U) /* Data Length Code */ #define FDCAN_ELEMENT_MASK_BRS ((uint32_t)0x00100000U) /* Bit Rate Switch */ #define FDCAN_ELEMENT_MASK_FDF ((uint32_t)0x00200000U) /* FD Format */ #define FDCAN_ELEMENT_MASK_EFC ((uint32_t)0x00800000U) /* Event FIFO Control */ #define FDCAN_ELEMENT_MASK_MM ((uint32_t)0xFF000000U) /* Message Marker */ #define FDCAN_ELEMENT_MASK_FIDX ((uint32_t)0x7F000000U) /* Filter Index */ #define FDCAN_ELEMENT_MASK_ANMF
in „[STM32] CAN Bus: Fehlende RAM Zuweisung für TX FIFO ?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
GameOfLife.c
#include "GameOfLife.h" #include "main.h" #include "stm32f7xx_hal.h" #include "stm32f7xx_hal_rng.h" uint8_t Layerswitch = 0; void GameOfLife (void) { const uint16_t Spielfeldgroesse_x = 90; const uint16_t Spielfeldgroesse_y = 50; uint8_t Wahrscheinlichkeit
in „Game of Life läuft nur eine Runde!“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32F103_512K_64K_DEF.ld
/* Linker subscript for STM32F103 definitions with 512K Flash and 64K RAM Copyright RAISONANCE 2007-2009 !!! This file is automatically generated by Ride !!! Do not modify it, as it will be erased at every link. You can use, copy
in „Anfänger Linkerscipt Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb.c
byteweise und auch nicht wirklich 32 bitweise. Beispiel: Text sei "Hello-World" 0x40006000: 48 65 00 00 6C 6C 00 00 6F 2D 00 00 57 6F 00 00 72 6C 00 00 64 ... H e l l o - W o r l d ... ab Offset 0: Control_In 64 Bytes Control_Out 64 Bytes
in „An W.S.: Läuft deine USB Implementierung auch auf STM32F303?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32f2xx.s
**************** (C) COPYRIGHT 2011 STMicroelectronics ******************** ;* File Name : startup_stm32f2xx.s ;* Author : MCD Application Team ;* Version : V1.0.0 ;* Date : 18-April-2011 ;* Description : STM32F2xx devices vector table for EWARM toolchain. ;* This module performs: ;* - Set the initial
in „Hilfestellung zu Interrupt Handler für STM32F207“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sccb.h
#include "stm32f4xx.h" #define DCMI_TIMEOUT_MAX 0x7FFFFF #define OV7670_WRITE_ADDR 0x42 #define OV7670_READ_ADDR 0x43 #define OV7670_DEVICE_WRITE_ADDRESS 0x42 #define OV7670_DEVICE_READ_ADDRESS 0x43 void I2C_Config
in „OV7670 blockiert Bus nach senden des Registers“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Strommessung.pdf
D _ _ _ _ _ _{ { GND { { H H H H H H V V 9 2 4 3 8 A A A A A A F203 3 1 1 3 6 1 4 GND L L L L L L 1A5 H 0 A D D D D SB F F F F F F V_{BUS} C205 M 2 B V V V D U 33p 8 Y 7 NRST V V D PA0 14 V_{TEMP} V 15 5 U207 10u C220 R204 10k 60 PA1 16 V_{BACKUPBAT} R208 BOOT0 PA2
in „Prüfung Schaltplan Power Profiler“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32F100_fehlerhaft.ld
ENTRY(_reset) MEMORY { /* memory map of STM32F100 */ Flash (rx): ORIGIN = 0x08000000, LENGTH = 256K SRAM0 (rwx): ORIGIN = 0x20000000, LENGTH = 64K } _stack_end = ORIGIN(SRAM0) + LENGTH(SRAM0); SECTIONS { .text : { _text_section_start = .; KEEP
in „uint64_t auf STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32f746xx.s
/** ****************************************************************************** * @file startup_stm32f746xx.s * @author MCD Application Team * @brief STM32F746xx Devices vector table for GCC based toolchain. * This module performs: * - Set the initial SP * - Set the initial PC == Reset_Handler, *
in „Step-Down-Regler ist zu langsam“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
startup_stm32f746zgtx.s
/** ****************************************************************************** * @file startup_stm32f746xx.s * @author MCD Application Team * @brief STM32F746xx Devices vector table for GCC based toolchain. * This module performs: * - Set the initial SP * - Set the initial PC == Reset_Handler, *
in „Startup code für STM32 C und C++ mix.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32F100.ld
ENTRY(_reset) MEMORY { /* memory map of STM32F100 */ Flash (rx): ORIGIN = 0x08000000, LENGTH = 256K SRAM0 (rwx): ORIGIN = 0x20000000, LENGTH = 64K } _stack_end = ORIGIN(SRAM0) + LENGTH(SRAM0); SECTIONS { .text : { _text_section_start = .; KEEP
in „uint64_t auf STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
gdblog.txt
@ address 0x00000000 (Data = 0x20005000) Select auto JTAG speed (1000 kHz) Target endianess set to "little endian" Select flash device: stm32f103rb Flash breakpoints enabled Flash download enabled Downloading 4096 bytes @ address 0x08000000 Downloading 4080 bytes @ address 0x08001000 Downloading 3856 bytes @ address 0x08001FF0 Writing register (PC = 0x08000000) ERROR: Failed to prepare for programming. Readback during RAM check
in „STM32: DMA vs. RAM check (beim Debug)“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
STM32F429-DISCO Discovery Board mit Display
STM32F429-DISCO, www.st.com, ST-LINK, USB USER, USER, SWD, GND, PG14, PG13, PG12, PG11, PG10, PG9, PG8, PG7, PG6, PG5, PG4, PG3, PG2, PG1, PG0, PA15 bis PA0, PB15 bis PB0, PC15 bis PC0, PH14, PH13, PH12, PH11, PH10, PH9, PH8, PH7, PH6, PH5, PH4, PH3, PH2, PH1, PH0, MB1075B
in „[V] Diverse Evaluation-Boards - ca. 2014-2016“ · Markt · · Platinenfotos
-
PDF
Dongle.pdf
MCP2551 CAN Vdd (5V)n 17 CANL Vss CANH TxD 4k7 470R Pin 18 Pin 17 / USART1 Tx g R X V C 5 GND 19 DIO STM32f042f6p6 20 CLK DO-214AC 1 Boot0 5 Vdd (3,3V) Diode 1A 4 /RST
in „STM32F042 gecloned aber verhält sich seltsam“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
oneWire.c
***/ /* Includes **********************************************************************/ #include "stm32f10x_conf.h" #include "Delay.h" #include "oneWire.h" #include "math.h" /* Functions **********************************************************************/ //reset device uint8_t ds1820_reset(GPIO_TypeDef
in „Timingproblem mit Onewire und STM32“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
readme.txt
einen Easy-PDK-Programmer Clone hatte ich bereits aufgebaut, aber eben wie der originale mit einem STM32F072 der momentan nur relativ teuer erhältlich ist – Stand 12.12.2020). Google-Ergebnisse geben da derzeit nur 2 Projekte aus, die nicht auf dem oben genannten Programmer basieren. Beide habe ich ausprobiert
in „Padauk PFS154 Programmer mit Arduino Uno / ATmega88 - 328“ · Projekte & Code ·
-
Datei
readme.txt
einen Easy-PDK-Programmer Clone hatte ich bereits aufgebaut, aber eben wie der originale mit einem STM32F072. Dieser ist derzeit nur relativ teuer erhaetlich – Stand 12.12.2020). Google-Ergebnisse geben da derzeit nur 2 Projekte aus, die nicht auf dem oben genannten Programmer basieren. Beide habe
in „Padauk PFS154 Programmer mit Arduino Uno / ATmega88 - 328“ · Projekte & Code ·
-
Bild
Konfigurationsmenü für STM32F1 Blue Pill Board
Board: "Generic STM32F1 series" Port: "COM33" Board Daten neuladen Board-Infos abrufen Debug symbols and core logs: "None" Optimize: "Smallest (-Os default)" Board part number: "BluePill F103C8" C Runtime Library: "Newlib Nano (default)" Upload method: "Maple DFU Bootloader 2.0" USB support (if available): "None" U(S)ART support: "Enabled (generic Serial)" USB speed (if available): "Low/Full Speed" Bootloader brennen
in „Bluepill STM32F103C8x Arduino Bootloader“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
PDF
PWM_Dimming_Drive_Control_Board_For__High_Power_LEDs.pdf
1 2 3 4 5 6 7 8 0 0 P 2 S D1 0 0 0 2 SS210 F D P CS1 D P P 0 P CF1 CD6 U1 C 0.1uF 0 0 P0U108 P 100V L1 22uH C 22uF/10V C 470uF/10V 7 P0U107 8 P0L101 P0L102 P P A BST SW +5V A 1.5A 6 P0U106 +48V P1 GND P0U101 2 0 0 R1
in „RGB LED Interface ESP8266-01“ · Mikrocontroller und Digitale Elektronik ·