-
Datei
sim010620101014.c
/h2> */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" #include "USART.h" /** @addtogroup STM32F10x_StdPeriph_Examples * @{ */ /** @addtogroup ADC_RegSimul_DualMode * @{ */ //int bla = 0; unsigned char it_active=1; int stop; ///////////////////
in „STM32 STD Libary Examples ADC RegSimul_DualMode“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Anleitung_STM32Duino_und_Bootloader_flashen_STM32F103_Minimum_Development_Board.pdf
Anleitung STM32Duino installieren (Win7 und höher) Englischsprachige Anleitung Download der Arduino-Version 1.6.5, neuere Versionen sind derzeit nicht mit STM32Duino kompatibel. Installieren von Arduino in ein selbst
in „STM32F103C8T6 ARM STM32 Minimum System Development Board Module For Arduino“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/* Includes ------------------------------------------------------------------*/ #include "stm32f0xx.h" #include "stm32f0xx_rcc.h" #include "stm32f0xx_gpio.h" GPIO_InitTypeDef GPIO_InitStructure; volatile uint32_t Milliseconds = 0, Seconds = 0; void SysTick_Handler(void){ Milliseconds++; //Increment
in „STM32F0: Systick will nicht wenn mit gcc unter linux compiliert“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usart_stm32f4xx.c
/* * usart_stm32f4xx.c * * USART/UART-Treiber * * $Date: 2019-03-24 09:25:14 +0100 (So, 24 Mrz 2019) $ * $Revision: 578 $ * * 15.05.2019 Nicolas */ #ifdef STM32F4XX #include "usart.h" #include "hw_config.h" #include "myassert.h" #include "ringbuffer.h" #include "stm32f4xx_usart.h" #include <string.h> /** UART Initialisieren */ void usart_init(void) { USART_InitTypeDef USART_InitStructure; GPIO_InitTypeDef GPIO_InitStruct; USART_TypeDef* USARTx; DMA_InitTypeDef
in „STM32: Sendepuffer für USART“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
f_mess_lcd.c
weitere Schaltungen für AVR-Controller. Das vorliegende Programm wurde mit IAR-Embedded Workbench 6.0 Kickstart entwickelt. Der Prozessor muß mit HCLK = 168MHz initialisiert sein. Die abs. Genauigkeit für 7 Stellen wird nur durch einen hochstabilen HSE-Takt erreicht. Beim Testaufbau mit dem STM32F4-Discovery-Board
in „reziproker Frequenzzähler mit STM32F4Discovery“ · Projekte & Code ·
-
Datei
triple_interleaved.c
-----------------*/ #include "triple interleaved.h" #define TripleADCMessungen 120 /** @addtogroup STM32F4xx_StdPeriph_Examples * @{ */ /** @addtogroup ADC_TripleModeInterleaved * @{ */ /* Private typedef -----------------------------------------------------------*/ /* Private define ----------------
in „STM32, triple mode Interleaved mode, periodisch falsch“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ILI9341_template_BluePill.ino
/findyours?_trksid=p2047675.l2563 // // STM32F103 // http://stores.ebay.de/SenseCore?_trksid=p2047675.l2563 // // TFT-Anschluss STM32F103 TFT 9341 //#define TFT_CS A2 3 //#define TFT_DC A1 5 //#define TFT_RST R rst-rst //#define TFT_MOSI A7 6
in „TFT mit ILI9341“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Tabelle mit Pinbelegungen verschiedener Mikrocontroller-Boards
Device | STM32F4x1 Nucleo | STM32F4x1 Blackpill | STM32F103C8T6 BluePill | Remarks User button | GPIO: PC13 (on board) | GPIO: PA0 (on board) | GPIO: PA6 | on board Board LED | GPIO: PA5 | GPIO: PC13 | GPIO: PC13
in „WordClock mit WS2812“ · Projekte & Code · · Screenshots
-
Datei
one_wire.c
Groppe * pic-projekte.de/Download/1-Wire-Projekt-V1_3.pdf * * Umgeschrieben zur Verwendung auf dem STM32F4 Discovery * * von Malte Becker * Projekt-Seminar WS 12/13 */ // Includes #include "stm32f4xx.h" #include "stm32f4xx_gpio.h" #include "stm32f4xx_rcc.h" #include "global_variables.h" // Sensor-Konfiguration
in „1-Wire Stm32f4discovery“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
schema_stm32_primer2_1_2.PDF
S R 100K V V V V V V V CONTRACT NO. COMPANY NAME RAISONANCE SAS 4 7 9 2 1 1 2 APPROVALS DATE DWG STM32F103VET6 STM32F103VET6 DRAWN FL Jun.2008 SIZE FSCM NO. DWG NO. REV. CHECKED YR Sept.2008 A V1.1 ISSUED SCALE SHEET 2 of 8 VCC5_USB VBAT VCCS VCCS VCCS VCCIN VCC2V8 L2 4.7µH 1 1 2 U12 R15 U15 5 2 470K
in „STM32 USB Virtual COM Port“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb.c
Port betreiben */ #include "usb.h" /* For devices with 2 x 16 bits / uint16_t access schema (e.g. STM32L0x2, STM32L0x3, STM32F0x2, STM32F303xD and xE) */ //#define UMEM_SHIFT 0 //#define UMEM_FAKEWIDTH uint16_t /* For devices with 1 x 16 bits / uint16_t access schema (e.g. STM32F103, STM32F302, STM32F303xB
in „STM32 USB Übertragungsproblem mit Code von S.F.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/* Includes ------------------------------------------------------------------*/ #include "stm32f2xx.h" #include "stm32_eval.h" #include "stm322xg_eval_lcd.h" #include "stm32f2xx_spi.h" #include <stdio.h> GPIO_InitTypeDef GPIO_InitStruct; SPI_InitTypeDef SPI_InitStructure; static uint8_t key_state
in „STM32 SPI Mosi Pegel zu niedrig“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsndconfig.h
#define IRSND_SUPPORT_A1TVBOX_PROTOCOL 0 // A1 TV BOX >= 15000 (better 20000) ~200 bytes #define IRSND_SUPPORT_LEGO_PROTOCOL 0 // LEGO Power RC >= 20000 ~150 bytes #define IRSND_SUPPORT_RCMM_PROTOCOL 0 // RCMM 12,24, or 32 >= 20000 DON'T CHANGE
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
main.c
/* * main.c * * Created on: 24.10.2010 * Author: Oliver Behr */ #include "stm32f10x.h" /* Super-Master-Header for STM32 */ #include "stm32f10x_it.h" /* Interrupt handlers */ #include "stm32f10x_conf.h" #include "configuration.h" extern uint32_t _isr_vectorsflash_offs; int main(void) { NVIC_SetVectorTable(NVIC_VectTab_FLASH, (uint32_t)&_isr_vectorsflash_offs); uint32_t i = 4; while (1) { i++; } return 0; }
in „Nicht genutzte globale Variablen werden wegoptimiert“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
build.xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project default="postbuild" name="test"> <property name="project.name" value="STM32F4_Discovery_CoOS"/> <property name="project.debug" value="Debug"/> <property name
in „STM32F4 CoOS“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
13475.pdf
UM0427 User manual ARM®-based 32-bit MCU STM32F101xx and STM32F103xx firmware library Introduction This document describes the ARM -based 32-bit MCU STM32F101xx and STM32F103xx firmware library. This library is a firmware package which
in „STM32F: SPI "Halbduplex"“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
nrf24l01.c
Clock = 1/2 SystemClock = 168 / 2 = 84 Mhz Prescaler 64 => Fspi = 1.3 Mhz */ #pragma GCC optimize ("O0") /* -------------- System Include Files ----------------- */ #include "stm32f4xx.h" #include "stm32f4xx_rcc.h" #include "stm32f4xx_spi.h" #include "stm32f4xx_gpio.h" /* -------------- Standard Include
in „GCC Optimierung killt Funktion“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
bootloader_105.asm
-------------------------------------------------- bootloader105_v03.as8 Serieller Bootloader fuer STM8S105 Bootloader belegt den Speicher ab Adresse 0x9E40 sodass fuer ein Userprogramm der Speicherplatz von 0x8000 . 0x9E3F zur Verfuegung steht (7744 Bytes = 121 * 64 Byte-Bloecke) Der Bootloader erwartet
in „Serial Bootloader für STM8S103F3P6 (Linux)“ · Projekte & Code ·
-
Datei
irsndconfig.h
0 // Samsung + Samsung32 >= 10000 ~300 bytes #define IRSND_SUPPORT_MATSUSHITA_PROTOCOL 0 // Matsushita >= 10000 ~200 bytes #define IRSND_SUPPORT_KASEIKYO_PROTOCOL 0 // Kaseikyo >= 10000 ~300 bytes #define
in „IR Signal falsch“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsndconfig.h
0 // Samsung + Samsung32 >= 10000 ~300 bytes #define IRSND_SUPPORT_MATSUSHITA_PROTOCOL 0 // Matsushita >= 10000 ~200 bytes #define IRSND_SUPPORT_KASEIKYO_PROTOCOL 0 // Kaseikyo >= 10000 ~300 bytes #define
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
tbasic.c
0, 1, 1, 2, 2, 2, 2, 2, 3, 3 }; const char *title = "STM8S103F3P6 --TBasic v1.02 -- 19200Bd 8n1\n\r"; enum { return_key = 0x0d }; enum { return_alt = 0x0a }; typedef struct { uint8_t p; uint8_t b; } PB
-
Datei
usart_stm32f4xx.c
/* * usart_stm32f4xx.c * * USART/UART-Treiber * * $Date: 2019-03-24 09:25:14 +0100 (So, 24 Mrz 2019) $ * $Revision: 578 $ * * 15.05.2019 Nicolas */ #ifdef STM32F4XX #include "usart.h" #include "hw_config.h" #include "myassert.h" #include "stm32f4xx_usart.h" // Testbuffer #define DMA_BUFFERLEN 10 uint8_t dma_buffer[DMA_BUFFERLEN] = "Hallo!\n"; /** UART Initialisieren */ void usart_init(void) { USART_InitTypeDef USART_InitStructure; GPIO_InitTypeDef
in „STM32: Sendepuffer für USART“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
f_mess.c
// reziproke Frequenzmessung mit STM32F4-Discovery-Board /* Beispielprogramm für Frequenzmessung an PE5 mit Timer9. Das Ergebnis wird 8-stellig mit max. 2 Mess./s oder minimal 1 Periodendauer angezeigt. Der Frequenzbereich ist 0,05Hz -
in „reziproker Frequenzzähler mit STM32F4Discovery“ · Projekte & Code ·
-
Datei
F2_messung_pwm.c
/* Reziproke Frequenzmessung mit STM32H750 mit 8-stelliger Auflösung. Eingangsfrequenbereich: 0,1 Hz - 100 MHz Die Frequenz wird aus den Eingangsimpulsen/Zeit errechnet. Dazu werden die Timer15 und Timer16 verwendet. Als Zeitbasis für
-
Datei
neigungsmessung.c
Crashdemon.... *** HAVE A LOT OF PHUN! *** *** Motorcycle IMU *** inertial measurement unit *** ver 0.1 (STM32) *** ARM Cortex-M3 *** ***********************************************/ #define STM32F10X_HD //#define USE_STDPERIPH_DRIVER #include <math.h> #include <stdio.h> #include <stdint.h> #include <stddef.h> #include <stm32f10x.h> //#include <stm32f10x_adc.h> //#include <misc.h> //#include <stm32f10x_lib.h> // Constants #define M_PI 3.14159265358979323846 // USART #define BAUD 115200 // Baudrate für serielle Kommunikation
in „[STM32] Keil SysTick_Config Probleme“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usart_stm32f4xx.c
/* * usart_stm32f4xx.c * * USART/UART-Treiber * * $Date: 2019-03-24 09:25:14 +0100 (So, 24 Mrz 2019) $ * $Revision: 578 $ * * 15.05.2019 Nicolas */ #ifdef STM32F4XX #include "usart.h" #include "hw_config.h" #include "myassert.h" #include "stm32f4xx_usart.h" // Testbuffer #define DMA_BUFFERLEN 10 uint8_t dma_buffer[DMA_BUFFERLEN] = "Hallo!\n"; /** UART Initialisieren */ void usart_init(void) { USART_InitTypeDef USART_InitStructure; GPIO_InitTypeDef
in „STM32: Sendepuffer für USART“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
bom-v1-0.pdf
0,07 € 0,07 € C24 110nF X7R-G0805 10N 0,04 € 0,04 € C25 1470nF KEM X7R0805 470N 0,07 € 0,07 € C130 14.7µF KEM X5R0805 4,7U 0,10 € 0,10 € C66 04.7µF only for STM32F4, F7 or H7 KEM X5R0805 4,7U 0,10 € 0,00 € C71 04.7µF only for STM32H7 KEM X5R0805 4,7U 0,10 € 0,00 € C67, C68 222pF KEM C0G0805 22P 0,04 € 0,08 € C69, C70 24,7pF NPO-G0805 4,7P 0,04 € 0,08 € C120, C121 2100µF 1206 X5R-G1206 100/6 0,27 € 0,54 € D1, D2,
in „Universalplatine für STM32, grobe Fehler vor der Herstellung?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsndconfig.h
IRSND_SUPPORT_LEGO_PROTOCOL 1 // LEGO Power RC >= 20000 ~150 bytes #define IRSND_SUPPORT_RCMM_PROTOCOL 0 // RCMM 12,24, or 32 >= 20000 DON'T CHANGE, NOT SUPPORTED YET! #define IRSND_SUPPORT_LGAIR_PROTOCOL 0 // LG Air Condition >= 10000 ~150 bytes. #define IRSND_SUPPORT_SAMSUNG48_PROTOCOL 0 // Samsung48
in „Umfrage: welche IR-Protokolle nutzt ihr mit IRMP?“ · PC Hard- und Software ·
-
PDF
STM32F2X7VGT6-DK-A.pdf
8 NC PB14_RMII_INT R34 2.2K 33 AVDD33 48 0.1uF 0.1uF CHS GND X2 IOVDD33 Y3 +3.3V R3 NC IOVDD33 32 HR911105A 1 IN VCC 4 GND GND GND 2 GND OUT 3 PA1_RMII_REF_CLK 34 X1 C32 C33 C34 B GND 50M 25 0.1uF 0.1uF 0.1uF B PA8_MCO1 25MHz_OUT 19 R40 24 AGND
in „STM32F207 Ethernet + RMII“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F2X7VGT6-DK-A.pdf
8 NC PB14_RMII_INT R34 2.2K 33 AVDD33 48 0.1uF 0.1uF CHS GND X2 IOVDD33 Y3 +3.3V R3 NC IOVDD33 32 HR911105A 1 IN VCC 4 GND GND GND 2 GND OUT 3 PA1_RMII_REF_CLK 34 X1 C32 C33 C34 B GND 50M 25 0.1uF 0.1uF 0.1uF B PA8_MCO1 25MHz_OUT 19 R40 24 AGND
in „STM32F2xx USART weigert sich“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
catalog.pdf
ID]: 000168 [Price]: 2.48 USD [QTY]: 20 [Category]: Microcontrollers [Desc]: Mainstream ARM Cortex-M0 Value line MCU with 64 Kbytes Flash, 48 MHz CPU MPN: STM32F103RBT6 [ID]: 000169 [Price]: 6.62 USD [QTY]: 1 [Category]: Microcontrollers [Desc]: MCU 32-bit STM32F ARM Cortex M3 RISC 128KB Flash 2.5V/3.3V
-
PDF
catalog.pdf
: Microcontrollers [Desc]: In a Pack of 5, Microchip, 8bit AVR Microcontroller, 20MHz, 4 kB Flash, 32-Pin TQFP MPN: STM32F030C8T6TR [ID]: 000168 [Price]: 2.48 USD [QTY]: 20 [Category]: Microcontrollers [Desc]: Mainstream ARM Cortex-M0 Value line MCU with 64 Kbytes Flash, 48 MHz CPU MPN: STM32F103RBT6
-
Datei
main.c
**** */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" /** @addtogroup STM32F10x_StdPeriph_Examples * @{ */ /** @addtogroup TIM_Input_Capture * @{ */ /* Private typedef -----------------------------------------------------------*/ /* Private define
in „Timer/Counter STM32“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Debugger-Konsole mit Flash-Erase- und Write-Fehlermeldungen
msp: 0x20001af8 target halted due to debug-request, current mode: Thread xPSR: 0x01000000 pc: 0x080001b0 msp: 0x20001af8 x/1xw 0x040021024 Warn : target not halted Info : target STM32F103C8Tx.cpu was not halted when step was requested Warn : target not halted Info : target STM32F103C8Tx.cpu was not halted when step was requested x/1xw 0x040021024
in „GD32F303: Bootloader der Originalfirmware für Open Source Projekt nutzen“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
httpd_cgi_ssi.c
*/ if (iIndex==0) { /* All leds off */ STM_EVAL_LEDOff(LED5); STM_EVAL_LEDOff(LED6); STM_EVAL_LEDOff(LED3); STM_EVAL_LEDOff(LED4); /* Check cgi parameter : example GET /leds.cgi?led=2&led=4 */ for (i=0; i<iNumParams;
in „LWIP Webserver“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
httpd_cgi_ssi.c
*/ if (iIndex==0) { /* All leds off */ STM_EVAL_LEDOff(LED5); STM_EVAL_LEDOff(LED6); STM_EVAL_LEDOff(LED3); STM_EVAL_LEDOff(LED4); /* Check cgi parameter : example GET /leds.cgi?led=2&led=4 */ for (i=0; i<iNumParams;
in „LWIP Webserver“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32F4_lcd.c
// Anschluß einer LC-Anzeige 2x16 an das STM32F4-Discovery-Board // lcd_init() muss als erste Funktion aufgerufen werden. Danach sollten // lcd_cmd() und lcd_zeichen() Befehle und Daten korrekt ausgeben. /* Das LCD-Modul wird im 4-Bit Modus betrieben
in „Frequenz- und Pulsweitenmessung mit STM32F407“ · Projekte & Code ·
-
Datei
cj_gol.c
stdint.h> #include <string.h> #include <ctype.h> // Special Libs #include "defines.h" #include "tm_stm32f4_delay.h" #include "tm_stm32f4_ili9341_ltdc.h" #include "tm_stm32f4_fonts.h" #include "tm_stm32f4_rng.h" // Projekt Header #include "cj_gol.h" ///////////////////////////////////////////// // Conways
in „Bedarf an eigenbau STM32F429 Evaluation Board ?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Akkuschutz-V0.2.pdf
7 0 BSS84 C 1 X8-5 WASSER X8-3 FLÄCHE1 SRP SRN NTC-VERSORGUNG NTC-VERSORGUNG R14 GND X8-2 +3V3 T 1 10k L 0 0 R8 O T 0 1 4 1 2 X8-1 FLÄCHE2 1k B 0 R R C2 C1 C3 GND 1 100nF 100nF 100nF 1 B R10 TEMP-R_SENSE
in „Ersatzbauteil - BMS incl. Balancer“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
stm32f4xx_flash.ld
/* Default linker script for STM32F4xx_1024K_192K */ /* include the common STM32F4xx sub-script */ /* Common part of the linker scripts for STM32F devices*/ /* default stack sizes. These are used by the startup in order to allocate
in „STM32F405 int64_t lehren“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
catalog-3.pdf
: Microcontrollers [Desc]: In a Pack of 5, Microchip, 8bit AVR Microcontroller, 20MHz, 4 kB Flash, 32-Pin TQFP MPN: STM32F030C8T6TR [ID]: 000168 [Price]: 3.4174 USD [QTY]: 20 [Category]: Microcontrollers [Desc]: Mainstream ARM Cortex-M0 Value line MCU with 64 Kbytes Flash, 48 MHz CPU MPN: STM32F103RBT6
-
PDF
STM_DEV.pdf
PISS50115 PC9 PISS6016 PD4 PISS40116 PISS50116 PIUC1022 PIUC1019 VCC VCC VDDA VSSA GND SS66 SS4 SS55 D STM32F103VE I2 I02 P02 P02 P2 P02 92 D COCK COCK COCK COCK COCK OCK OCK9 I1100n I01n 10P01100nP010n 1P1n 100P01 91 TitleCPU Master Size:A4 Number: 2. Revision1.0 GND Date: 16.01.2010 Time: 17:31:15 Sheet
in „STM32 Development Board“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4xx_it.c
/** ****************************************************************************** * @file Project/STM32F4xx_StdPeriph_Templates/stm32f4xx_it.c * @author MCD Application Team * @version V1.5.0 * @date 06-March-2015 * @brief Main Interrupt Service Routines. * This file provides template for all exceptions
in „STM32 Interrupt / I/O“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
MB1136.pdf
OUT 1 2 P P0X201 P0X202 4.3pF 5 C15 MCU_LQFP64 X2 B1 C 100nF P ABS25-32.768KHZ-6-T 0 0 USER (Blue) 0 0 X X B B 4P 3P C32 P P Default: closed R36 0 R29 MCOP0MCO P0SB5001 P0SB5002 P0R3602 P0R3601 P0C3201 P0C3202 P0R2901
in „Mikrocontroller Spannung/Strom“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
Nucleo_Board_Schematics.pdf
OUT 1 2 P P0X201 P0X202 4.3pF 5 C15 MCU_LQFP64 X2 B1 C 100nF P ABS25-32.768KHZ-6-T 0 0 USER (Blue) 0 0 X X B B 4P 3P C32 P P Default: closed R36 0 R29 MCOP0MCO P0SB5001 P0SB5002 P0R3602 P0R3601 P0C3201 P0C3202 P0R2901
in „Erbitte Hilfe bei Fehlersuche - STM32F446“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f4xx.h" #include "stm32f4xx_tim.h" #include "stm32f4xx_dma.h" uint16_t LED_PIN_SET[10] = { GPIO_Pin_5, 0x0000, GPIO_Pin_5, 0x0000 ,GPIO_Pin_5, 0x0000 ,GPIO_Pin_5, 0x0000 ,GPIO_Pin_5, 0x0000 }; uint16
in „STM32F4 + Timer 3 + DMA1 schreibt nicht ins ODR => TEIF“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Modified Allan Deviation Diagram
Modified Allan Deviation (Mod σy(τ)) Tau Sigma(Tau) 1s 1.83E-7 2s 1.63E-7 4s 1.32E-7 8s 1.02E-7 10s 9.10E-8 40s 2.23E-8 80s 2.00E-8 100s 1.47E-8 200s 1.12E-8 600s Trace Notes Input Freq Sample Interval MEDEV at 1s Duration Elapsed Acquired Instrument STM32F743 MCO1_PLL1_Q Test 25 MHz / 5* 192 / 20 / 1 = 48MHz 48 MHz 1 s 58m 43s 58m 43s 3523 pts FA.2 STM32F743 MCO1_PLL1_Q Test 25 MHz / 10* 384 / 20 / 1 = 48MHz 48 MHz 1 s 55m 14s 55m 14s 3314 pts FA.2 STM32F743 MCO2_PLL2_P Test 25 MHz / 20* 200 / 15 / 20MHz 20 MHz 1 s 53m 33s 54m 0s 3244 pts FA.2 STM32F743
in „STM32H743 PLL“ · Mikrocontroller und Digitale Elektronik · · Diagramme
-
Datei
InVenterSteuerung_V0.4_Diskret_Partlist.txt
_4_16 1 C2 100nF C_KERAMIK_1PF_0,68UF_SMD0603 0603 capacitor_mw_4_16 1 C3 100nF C_KERAMIK_1PF_0,68UF_SMD0603 0603 capacitor_mw_4_16 1 C4 100nF C_KERAMIK_1PF_0,68UF_SMD0603 0603 capacitor_mw_4_16 1 C5 100nF C_KERAMIK_
in „Inventer Lüfter Ansteuerung“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
simple_server.c
; return(plen); */ } u16 print_webpage(u8* buf, u8 on_off) { u16 plen; plen = fill_tcp_data_p(buf, 0, PSTR("HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nPragma: no-cache\r\n\r\n")); plen = fill_tcp_data_p(buf, plen, PSTR("<center>")); plen = fill_tcp_data_p(buf, plen, PSTR("<a style=color:red><h1>STM32F103
in „Webpage Webserver“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
06072010.txt
((uint32_t)0x7F) #define Bit7to11 ((uint32_t)0xF80) #define Bit0to1 ((uint32_t)0x3) #define Bit2to8 ((uint32_t)0x1FC) #define Bit9to11 ((uint32_t)0xE00) u32 StartBit = 0x80; int main(void) { /*!< At this stage
in „STM32 Interrupts“ · Mikrocontroller und Digitale Elektronik ·