-
Datei
LCD.h
*********************************************************************************** * * File : LCD.h * Hardware Environment: * Build Environment : RealView MDK-ARM Version: 4.20 * Version : V1.0 * By : * * (c) Copyright 2005-2011, WaveShare * http://www.waveshare.net * All Rights Reserved * ********
in „STM32F4 mit TFT Codeverständnis“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD.h
*********************************************************************************** * * File : LCD.h * Hardware Environment: * Build Environment : RealView MDK-ARM Version: 4.20 * Version : V1.0 * By : * * (c) Copyright 2005-2011, WaveShare * http://www.waveshare.net * All Rights Reserved * ********
in „STM32F4 Discovery + TFT + FSMC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32_TIMER.ino
#include "Arduino.h" #include "STM32_REGS.h" void setup() { *RCC_CFGR &= ~(0b1111 << PLLMUL); //pll*2 *RCC_CFGR |= (0b0101 << PLLMUL); *RCC_CFGR &= ~(1 << PLLSRC); //pll input source hsi/2 *RCC_CFGR |= (PLL_INPUT_HSI_HALF
in „STM32 Ratsuchend“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
*/ /* Includes ------------------------------------------------------------------*/ #include "main.h" #include "stm32l4xx_hal.h" /* USER CODE BEGIN Includes */ #define TIM_OCMODE_PWM2_CH1 TIM_OCMODE_PWM2 #define TIM_OCMODE_PWM2_CH2 ((uint32_t)TIM_CCMR1_OC2M_2 | TIM_CCMR1_OC2M_1 | TIM_CCMR1_OC2M_0) #define TIM_OCMODE_PWM2_CH3 ((uint32_t)TIM_CCMR2_OC3M_2 | TIM_CCMR2_OC3M_1 | TIM_CCMR2_OC3M_0) #define TIM_OCMODE_PWM2_CH4 ((uint32_t)TIM_CCMR2_OC4M_2 | TIM_CCMR2_OC4M_1 | TIM_CCMR2_OC4M_0) #define TIM_OCMODE_PWM1_CH5 ((uint32_t)TIM_CCMR2
in „PWM Signalerzeugung“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
RDA5851S.pdf
ABB A8 General Purpose ADC GP_ADC_IN_0 I A GPADC input channel 0 ABB C2 USB USB_DM I/O A USB D- ABB H5 USB_DP I/O A USB D+ ABB G5 AUDIO LINE_IN_L I A Stereo Line input ABB F3 LINE_IN_R I A Stereo Line input ABB F4 AU_MIC_P I A Audio In+ ABB H4 AU_MIC_N I A Audio In- ABB H3 AU_RCV_P O A Receiver Out +
-
Datei
main_-_master.c
*/ /* Includes ------------------------------------------------------------------*/ #include "main.h" #include "stm32f1xx_hal.h" /* USER CODE BEGIN Includes */ #include "stdio.h" #include "string.h" /* USER CODE END Includes */ /* Private variables ---------------------------------------------------
in „STM32F103 SPI Slave + Master“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2c_simple.h
Einfache Variante von I2C-Routinen // als Übung zur Inbetriebnahme // // 22.12.13 Nicolas #include "stm32f10x_i2c.h" #include "misc.h" /* Timeout fuer jede I2C-Scan-Operation in Millisekunden */ #define I2C_SCANTIMEOUT 200 #define I2C_NORMALTIMEOUT 300 enum {i2c_ok, //0 i2c_noStart, //1 i2c_startTimeout, //2 i2c_noAck, //3 i2c_ackTimeout, //4 i2c_nAckTimeout, //5 i2c_otherTimeout, //6 i2c_busyTimeout, //7 i2c_off, //8 i2c_stop //9 }; void i2c_polltimeout(void); // must be called in an isr about every 1ms void init_I2C1(void); uint8_t I2C_waitbusy(I2C_TypeDef*
in „STM32 I2C mit EEPROM - funktioniert nur zuverlässig mit Bus-Sniffer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32f746xx.S
/** ****************************************************************************** * @file startup_stm32f746xx.s * @author MCD Application Team , Benny Zinke * @Version V1.0.2 * @Date 06-October-2015 * @brief STM32F746xx Devices vector table for GCC based toolchain. * This module performs: * - Set the
in „STM32F7 & malloc“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
atmel-4952-standard-drivers-ata6836c_datasheet.pdf
quality for the exacting requirements of automotive applications. Figure 1-1. Block Diagram SO28 S O H L H L H L H L H L H L S S C L S S S S S S S S S S S S R 5, 10 I T D 6 6 5 5 4 4 3 3 2 2 1 1 R VS Input register Ouput register Serial interface Charge 20 pump GND DI P I S H L H L H L H L H L H L T 21
in „Keine Open Load Meldung bei ata6836c und IFX9201SG!“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD.c
**/ /* Includes ------------------------------------------------------------------*/ #include "LCD.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_fsmc.h" /* Private define ------------------------------------------------------------*/ #define LCD_REG (*((volatile unsigned
in „STM32F4 mit TFT Codeverständnis“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD.c
**/ /* Includes ------------------------------------------------------------------*/ #include "LCD.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_fsmc.h" /* Private define ------------------------------------------------------------*/ #define LCD_REG (*((volatile unsigned
in „STM32F4 Discovery + TFT + FSMC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
nrf24l01_drv.h
#ifndef NRF24L01_H_INCLUDED #define NRF24L01_H_INCLUDED /* -------------- Standard Include Files ----------------- */ /* -------------- System Include Files / Librarys -------- */ #include "stm32f10x_conf.h" /* -------
in „[STM32F4xx] NRF24L01+ Funkmodul Source Code“ · Projekte & Code ·
-
PDF
AOA_Application_Board_revA.pdf
GND GND Power supply and UART-to-USB bridge USB Device connector for Powering 3.3V Power Supply 3 H1 3 3 4.3mm 3 + U9 3 TP2 + SP1117M3-3.3 3 H2 9 L5 3 2 + 4.3mm R 2 5V DC, 1 Amp 1 +5V VIN VOUT 4 H3 TP3 +5V 2 C59 BLM21PG600SN1D +C60 C61 GND C62 +C63 4.3mm 8 E 3 1 D R 4 100N 22U/10V 100N 100N 22U/10V
in „Probleme mit LPC11C24“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f4xx.h" #include <stdio.h> #define SELECT_GYRO GPIO_ResetBits (GPIOE, GPIO_Pin_3) #define DESELCT_GYRO GPIO_SetBits (GPIOE, GPIO_Pin_3) void USART_SendString(USART_TypeDef * USARTx, char * data); /
in „STM32-Discovery Gyro auslesen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
**** */ /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal.h" /* USER CODE BEGIN Includes */ /* USER CODE END Includes */ /* Private variables ---------------------------------------------------------*/ UART_HandleTypeDef huart1; /* USER CODE BEGIN
in „STM32F4 CubeMX UART Probleme“ · 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 ·
-
PDF
LIS302DL_AN.pdf
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 8.4 FF_WU_THS_1 (32h) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 8.5 FF_WU_DURATION_1 (33h) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 8.6 FF_WU_CFG_2 (34h
in „Verwirrung mit LIS302“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
eGC.pdf
DQ4 PIIC30H1_D12 SDRC_D4 PIIC10sdrc_d4 sdrc_d20IIC10V1 B sdrc_a5PIIC10N4_A5 SDRC_A5 PIIC3A53 DQ5 PIIC30H9_D13 SDRC_D5 PIIC10sdrc_d5 sdrc_d21IIC10V2 B sdrc_a6PIIC10P3C_A6 SDRC_A6 PIIC3A67 DQ6 PIIC30F1C_D14 SDRC_D6
in „[Suche] Interessierte(n) an Projekt (ARM/FPGA)“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Advantest_R4131.pdf
i +15v j , V E F 1 ' ' _ _ 2 K 0 -- - 1 r - - - - ' - 1-o 1 1VCHEK IJ i 1 ANALOG f CPU 1 18K 1 1 .5v 1 1 1 1 1 15K 1 1 1 1 . 5V 51x 1 375 FM +13.5V 1 1 1 1 1 1 MAIN 1 1 L J1 1 7.5K 7.5K YTOCONT/IF L F ig u re 9 -2 2 A n a ly z e r T e st T h e R 4 1 3 1 S e rie s h a s a n a d ju stm e n t fu n c tio
in „Advantest Spectrum Analyser R4131B Fehler im Netzteil“ · HF, Funk und Felder ·
-
Datei
debug.c
files //============================================================================= #include "debug.h" #include "stm32f4xx.h" //============================================================================= // Main output routine //======================================================================
in „STM32: Drama mit "Hard Fault Error"“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
STM32 Mikrocontroller-Entwicklungsboard
CAMERA LCD STM32H723ZGT6 AA 110 VQ Z TUN AA 342 03 BOOT RST 5V GND DIO CLK
in „Neues Blackboard mit STM32H723“ · Mikrocontroller und Digitale Elektronik · · Platinenfotos
-
Datei
stm32h7xx_hal_msp.c
Header */ /** ****************************************************************************** * @file stm32h7xx_hal_msp.c * @brief This file provides code for the MSP Initialization * and de-Initialization codes. ****************************************************************************** * @attention * * <h2><center>© Copyright (c) 2021 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use
in „STM32H745 I2S DMA (NUCLEO-STM32H745ZI-Q DualCore)“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
The_International_System_of_Units_sp330.pdf
...........29..... 2.4 Electric current ...........................................................32...... 2.5 Thermodynamic temperature ..................................................33. 2.6 Amount of substance.........................................................35... 2.7 Luminous intensity.
in „Stromangabe in der Einheit At?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb.c
/* USB als COM Port betreiben */ #include "usb.h" // Trace messages #define ENABLE_TRACING 1 #if ENABLE_TRACING #define trace(msg) ITM_SendString(msg) #define ITM_PORT0_8 (*(volatile char *)(0xE0000000UL)) #define ITM_PORT0_32 (*(volatile unsigned
in „An W.S.: Läuft deine USB Implementierung auch auf STM32F303?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
XCore407I.pdf
PD4 P I S W 1 0 3 P I S W 1 0 6 PA5A PIU20mcu0514<>SPI1_NSS/SPI3_NSS/USART2_CK/DCMI_HSYNC/OTG_HS_SOF/I2S3_WS<>ADC12_IN4/DAC1_OUT PD4<>FSMC_NOE/USART2_RTS PIU20mcu0147 PD5 104R0C1 PIW10uF1 P1040C32 PIW10uF1 5V P I S W 1 0 4 P I S W 1 0
in „STM32 Board von Waveshare“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Bestückte Leiterplatte mit STM32G Mikrocontroller
STM32G 433KBT6 GQ23A 9R CHN2431L ST X GAPTEC 2304P00029 RH5 DRV8245H 3BK24 AKHE
in „PWM-Steller und DC-Motorparameter“ · Analoge Elektronik und Schaltungstechnik · · Platinenfotos
-
Datei
eventcb_ctrl6.ino
11.05.2026 R. Seelig -------------------------------------------------------- */ #include <stdint.h> #include <ctype.h> #include <stdlib.h> #include <string.h> #include "sn74hc595.h" #include "eventsources.h" #include "my_printf.h" #include "colpos.h" #ifdef CH32V00x #include "HardwareSerial_v003.h
in „Schulnotenbewertung eines Arduino-Programms“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
eeprom.h
/* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __EEPROM_H #define __EEPROM_H /* Includes ------------------------------------------------------------------*/ #include "stm32f3xx_hal.h" /* Exported constants --------------------------------------------------
in „STM32 Virtueller EEPROM in Flash“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
**** */ /* Includes ------------------------------------------------------------------*/ #include "stm32f1xx_hal.h" /* USER CODE BEGIN Includes */ /* USER CODE END Includes */ /* Private variables ---------------------------------------------------------*/ CAN_HandleTypeDef hcan; TIM_HandleTypeDef htim1
in „STM32 HAL Interrupt Callbacks in main.c implementieren?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Adc.c
#include "Adc.h" #include "stm32f4xx_adc.h" void Adc_Init(void) { ADC_InitTypeDef ADC_InitStructure; ADC_CommonInitTypeDef ADC_CommonInitStructure; GPIO_InitTypeDef GPIO_InitStructure; RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1
in „STM32F4 Internal Reference“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
system_clock.c
(48 MHz) | YES *-------------------------------------------------------------------- **/ #include "stm32h7xx.h" #include "nvic_addr.h" #include "mbed_error.h" /*!< Uncomment the following line if you need to relocate your vector Table in Internal SRAM. */ /* #define VECT_TAB_SRAM */ #define VECT_TAB_OFFSET
in „Problem mit USB auf STM32H743“ · 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 ·
-
PDF
Computer_Kontakt_1986-08_09_-_21.pdf
'!:?H5:KI89i2:il37 1(5 REN iisMTnessi.'istysiisisitiKStd nn3i*i;«*iur 1531 15M7 !2135b3 102514 (33055b( d 238»TB4-tt.'U3IStt(57(HH» ) 1 29(3i IBM)! It i599d**l2t ub9d* i 4H 1579*1 1KS '1'(d32(*40 I(III* Mil
in „ZX Spectrum => Upgrade von 16 auf 48 KB RAM“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd.c
******/ /* Includes ------------------------------------------------------------------*/ #include "stm32f0xx_hal.h" #include "lcd.h" /************************************************************************************** * Begin of Handlers * **********************************************************
in „LCD W204B-NLW“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
display.c
/** * Ansteuerung des Display. * * Benötigte Hardware: PORTE */ #include "stm32f10x_gpio.h" #include "display.h" #define DATA (GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7) #define RESET GPIO_Pin_8 #define RW GPIO_Pin_9
in „STM32 und ks0108-Display - keine Anzeige“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
kk_ov7670c.h
/* GUANFU_WANG@126.COM http://mcudiy.taobao.com/ QQ:21578936 δ����ɽ�ֹ�κ���ҵ��; #include "ov7670.h" #include "main.h" #include "ov7670config.h" #include "stm32f10x_lib.h" */ //extern const char change_reg[CHANGE_REG_NUM][2]; //////////////////////////// //���ܣ��ṩ7660ʱ�� //���أ��� /* void XCLK_init_ON
in „Leisungsvergleich ARM AVR“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
PuTTY Terminal-Ausgabe eines Mikrocontroller-Loggers
called power_on... board_led_init... button_init... timer2_init... wpsbutton_init... Version: 2.9.5 Hardware: STM32F103 Display: WC12h LEDs: WS2812 GRB rtc is offline eeprom is offline trying to reduce I2C clock speed... rtc remains offline eeprom remains offline ws2812: no external pullup detected
in „WordClock mit WS2812“ · Projekte & Code · · Screenshots
-
Datei
Configuration.h
for AVR, DUE, LPC1768/9 and STM32/STM32F1 * :[-1, 0, 1, 2, 3, 4, 5, 6, 7] */ //#define SERIAL_PORT_3 1 //#define BAUDRATE_3 250000 // Enable to override BAUDRATE // Enable the Bluetooth serial interface on AT90USB devices //#define
in „Custom 3D-Drucker zu ausgebuchtete Ecken“ · Mechanik, Gehäuse, Werkzeug ·
-
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
in „RGB LED Interface ESP8266-01“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
CN3722-CONSONANCE.pdf
s pull up current is about 50uA, so the NTC thermistor’s resistance should be 10kΩ at 25℃, about 3.5kΩ at hot temperature threshold, and about 32kΩ at cold temperature threshold. The NTC thermistor such as TH11-3H103F, MF52(10 kΩ), QWX-103 and NCP18XH103F03RB can work well with CN3722. The above mentioned
in „Auswahl Solar-Laderegler für 12V Blei-Akku“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
main.c
*/ /* Includes ------------------------------------------------------------------*/ #include "main.h" #include "stm32f4xx_hal.h" #include "usb_device.h" /* USER CODE BEGIN Includes */ /* USER CODE END Includes */ /* Private variables ---------------------------------------------------------*/ TIM_HandleTypeDef
in „Zeitmaschine“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Logfile.txt
power on delay_init... board_led_init... button_init... timer2_init... wpsbutton_init... Version: 2.9.5 Hardware: STM32F103 Display: WC12h LEDs: WS2812 GRB rtc is online eeprom is online ws2812: external pullup detected eeprom is online current eeprom version: 0x00020900 reading ir codes from eeprom DFPLAYER
-
Datei
usb.c
NVIC_STIR (*(volatile unsigned long *)(0xE000EF00)) /* alle USB-Register sind 16 Bit breit, müssen aber 32 bittig gelesen und geschrieben werden Auch der USB-RAM von 512 Bytes ist 32 bittig zu behandeln (aber mit Vorsicht!) */ /* USB device (base address 0x4000 5C00) */ #define USB_BASE 0x40005C00 #define
in „An W.S.: Läuft deine USB Implementierung auch auf STM32F303?“ · 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
LPH8731-3C.h
, C60, MC60, S55 acknowledgements: user neonix on RadioKat Forum Igor Kizim aka Igoryosha (ATMega, STM32 implementations) Dmitry Karech (MSP430 implementation) license: GPL v2 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as
in „LCD LPH8731-3C aus Siemens-Handys, Treiber“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
*/ /* Includes ------------------------------------------------------------------*/ #include "main.h" #include "stm32f7xx_hal.h" /* USER CODE BEGIN Includes */ #include "stm32746g_discovery_lcd.h" #include "GameOfLife.h" /* USER CODE END Includes */ /* Private variables -----------------------------
in „Game of Life läuft nur eine Runde!“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Diagramm der Power-up/power-down sequence eines STM32
STM32H750 neu ... + Erstellen Konvertieren Elektronische Signaturen Text oder Tools suchen Figure 2. Power-up/power-down sequence 3.6 VDDX V_BORS 1 0.3 Power-on Operating mode Power-down time VDDX < VDD + 300 mV VDDX independent from VDD 3.5.2 Power supply supervisor The devices have an integrated power-on reset (POR)/ power-down reset (PDR) circuitry coupled with a Brownout reset (BOR) circuitry: • Power-on reset (POR) The POR supervisor
in „STM32f030F4 eigene PCB“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
PDF
ITS4142N_Smart_Switch.pdf
5 0 o h m C la s s 1 8 0 V B B , n o is e flo o r V B B , P W M 7 0 6 0 5 0 V 1 5 0Ω / 8 -H µ 4 0 d 3 0 2 0 1 5 0Ω / 1 3 -N 1 0 0 -1 0 -2 0 0 ,1 1 1 0 1 0 0 1 0 0 0 f / M H z Test circuit: 150Ω-Network
in „Smart Power Switch galvanisch entkoppelt ansteuern“ · 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 ·