-
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
nrf24l01_drv.h
#ifndef NRF24L01_H_INCLUDED #define NRF24L01_H_INCLUDED /* -------------- Standard Include Files ----------------- */ /* -------------- System Include Files / Librarys -------- */ #include "stm32f10x_conf.h" /* -------
in „Basteltip: STM32F103 DIP40 Board“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irmp-chibios.patch
+ // The actual timer used must be available on the chosen hardware + // and activated in mcuconf.h (e.g. use #define STM32_GPT_USE_TIM14 TRUE) + + gptStart(&GPTD14, &irmp_gpt_cfg); + gptStartContinuous(&GPTD14, 10); + + /* This is now the idle thread loop, you may perform here a low priority + task
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
ethernetif.c
is part of the lwIP TCP/IP stack. * * Author: Adam Dunkels <adam@sics.se> * */ #include "lwip/mem.h" #include "netif/etharp.h" #include "ethernetif.h" #include "stm32f4x7_eth.h" #include "main.h" #include <string.h> /* Network interface name */ #define IFNAME0 's' #define IFNAME1 't' /* Ethernet Rx
in „stm32f4xx lan8720 uip“ · 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
in „STM32 I2C mit EEPROM - funktioniert nur zuverlässig mit Bus-Sniffer“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
BlueMOD_P25_G2__Datasheet.pdf
I/O PD H General Purpose Input/Output, weak internal Pull- Down / UART2 DATA Output 31 GPIO[4]/RXD2 I/O PD H General Purpose Input/Output, weak internal Pull- Down / UART2 DATA Input 32 USB_DN I/O PD - USB Data
in „Bluetooth-Modul "BlueMod+P25" von Stollmann - Ersatztyp“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
GH025A_A3__-_090622.pdf
) EFD1322N 6.MECHANICAL ASSEMBLY UNI( : mm) << TOP VIEW >> ** PRIMARY INDUCTANCE SORTING -. L : 350H ~ 450 uH -. N : 450H ~ 550uH -. H : 550H ~ 650uH 27.4 ±0.5 31.7 ±1.0 13.6 ±1.0 << SIDE VIEW >> 1 POLYIMIDE FILM TAPE POLYIMIDE FILM TAPE 7.0MAX 11.50 ±0.4 1.0 << BOTTOM VIEW >> 30.1 ±0.4 31.7 ±0.4 1.85
in „Display ansteurern“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
UserInterfaceClass.h
STM32_PMSM_UI_Library * @{ */ /** @addtogroup UserInterface * @{ */ /** @defgroup UserInterface_class_exported_types UserInterface class exported types * @{ */ /* Exported defines-----------------------
in „STM32 PMSM FOC set Speed in rpm“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SMD_Catalog.pdf
pnp dtr 2k2+2k2 31 31 MMBD1402 Nat K SOT23 Si diode 200V 100mA p31 PDTA143XT Phi N SOT23 pnp dtr 4k7+10k t31 PDTA143XT Phi N SOT23 pnp dtr4k7+10k 32 MUN5332DW1 Mot DP SOT363 npn/pnp dtr 4k7+4k7 32 MMBD1403 Nat D SOT23 dual Si diode 200V 100mA 32 BAT32 Sie CS - 18GHz zero-bias schottky p32 PDTC143XT
in „Hilfe bei Bauteilsuche für Mainboard“ · PC Hard- und Software ·
-
Datei
camera_OV7670_tmp.c
#include "camera_OV7670.h" #include "stm32f4xx.h" #include "sccb.h" #include "delay.h" // Minimal config to generate colorbar test-image. Note: 313 pixels/line (WORKING !!!) static unsigned char OV7670_QVGA[][2]= { 0x12, 0x80
in „OV7670 blockiert Bus nach senden des Registers“ · 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 ·
-
Datei
touch.h
//-------------------------------------------------------------- // File : touch.h //-------------------------------------------------------------- #ifndef __TOUCH_H #define __TOUCH_H #include "main.h" //-------------------------------------------------------------- // Globale Funktionen
in „Touch - wie kalibrieren in C?“ · 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 ·
-
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
in „Game of Life läuft nur eine Runde!“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STEVAL-3DP001V1_Data.pdf
Rev 1 STEVAL-3DP001V1 Schematic diagrams Figure 3: STEVAL-3DP001V1 circuit schematic: BEDS control 7 H L N 0 2 3 T Q S N 4 K 7 E E 2 . 1 R _ R 2 D G D D 2 P V R N V F _ 3 0 D C 1 V 5 4 R C U K V O D 2 1 1 C L 4 E N 7 1 O I G N U S 1 2 3 3 T A H _ E B 7 H L 3 0 2 2 T Q S N E E 2 . 1 R B R 2 D G D D 6
in „3D-Drucker Board bzw CNC-Board mit STM32F401“ · Mechanik, Gehäuse, Werkzeug ·
-
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 ·
-
Datei
out.txt
. BEQ 0x8003644 ; _ZN16mb_uart32_de_irq3irqEv + 76 0x08003624: 423a :B TST r2,r7 0x08003626: d00d .. BEQ 0x8003644 ; _ZN16mb_uart32_de_irq3irqEv + 76 0x08003628: 6898 .h LDR r0,[r3,#8] 0x0800362a: 6803 .h LDR r3,[r0,#0] 0x0800362c:
in „ARM Bootloader mit ELF, Einstieg nicht bei 0x08000000“ · 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" /* USER CODE END Includes */ /* Private variables -----------------------------------------------------
in „Probleme beim Debuggen mit SW4STM32 und und F7Disco“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Zentrale.txt
CAN Nachrichten als Funktion geschrieben */ // -------------------------------------- Umbenenen der STM Pins // Bliotheken //------------------------------------------------------------------------------------------------------------Testweise auskommentiert #include <assert.h> #include "stm32f103.h" /
in „Arduino Blue Pill CAN bibliothek“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
MCU_-_HR8P506_Datasheet_e.pdf
Bits 39~32 UID4, byte address is 001001D0 H UID3 Bits 31~24 UID3, byte address is 001001C6 H UID2 Bits 23~16 UID2, byte address is 001001C4 H UID1 Bits 15~8 UID1, byte address is 001001C3 H UID0 Bits 7~0 UID0,
in „Re - Programmierung eines Cortex M0“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
main.c /* Includes ------------------------------------------------------------------*/ #include "main.h" #include "stm32f1xx_hal.h" #include "i2c.h" #include "tim.h" #include "gpio.h" /* USER CODE BEGIN Includes */ #include <string.h> /* USER CODE END Includes */ /* Private variables ------------------
in „STM32F103 I2C HAL_BUSY“ · 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 ·
-
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 ·
-
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 ·
-
PDF
Sti7105_SDK_Main_Board_V1.2.pdf
DQ9 F2 DQ5 H9 DQ5 H9 LMIA7 U2 A7 DQ8 F8 LMID8 LMIA7 U2 A7 DQ8 F8 LMID24 LMIBA2 L1 BA2 DQ4 H1 LMID4 LMIBA2 L1 BA2 DQ4 H1 LMID20 LMIA8 U8 A8 LMIA8 U8 A8 LMIBA1 L3 BA1 DQ3 H3 LMID3 LMIBA1 L3 BA1 DQ3 H3 LMID19 LMIA9
in „Motorola Vip19x0 (Big brother of Vip1710)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
*/ /* Includes ------------------------------------------------------------------*/ #include "main.h" #include "stm32f1xx_hal.h" /* USER CODE BEGIN Includes */ #include "x_user.h" /* USER CODE END Includes */ /* Private variables ---------------------------------------------------------*/ I2C_HandleTypeDef
in „CubeMX und HAL - I2C hängt sich auf“ · 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 ·
-
Bild
Webseite eines Elektronik-Distributors mit Arduino Prototyping Kit
Manufacturers Distributors Display Pro 1 Apply Austria EUR AKX00060 by Arduino PROTOTYPING KIT, 1MB, 1.8GHZ, STM32H7; Add to BoM Cart Download Datasheet View Product Details Pricing Matrix Qty. 1 Distributor Stock Order Pricing Total Price Farnell element14 UK 4419928 60 in stock 1 567,3280 € 567,33 total Avnet
in „Messtechnik von Keysight und Digilent, News von der MCX-Familie, Arduino-Zephyr uvam“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
PDF
Infineon_TLE9263QX.pdf
LIN2 44 PG-VQFN-48 17 VCC1 n.c. 45 16 n.c. n.c. 46 15 VS FO2 47 14 VS FO3/TEST 48 13 VSHS 1 2 3 4 5 6 7 8 9 1 1 1 G n V V V n n H H H H n N c C C C c c S S S S c D . 3 3 3 . . 1 2 3 4 . R B S F H TLE9263.vsd Figure 2Pin Configuration Data Sheet 8 Rev. 1.1, 2014-09-26 TLE9263QX Pin Configuration 3.2 Pin
in „SBC für CAN/LIN bei einem 24V Bordnetz“ · 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> /*============================================================================== * File
in „STM32 DS1820“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
kicad_8450_dcm_liste_neu_v3.pdf
RFSolutions.dcm 3 22-05-2017 sensors.dcm 91 28-07-2017 silabs.dcm 9 05-06-2017 siliconi.dcm 2 22-05-2017 stm32.dcm 796 22-05-2017 stm8.dcm 7 31-05-2017 supertex.dcm 18 22-05-2017 switches.dcm 45 01-08-2017 Symbols_Microcontroller_Philips-NXP.dcm 6 22-05-2017 texas.dcm 89 21-08-2017 transf.dcm 18 22-05-2017
in „KiCAD Eeschema, Bibliotheksdokumentation *.dcm als PDF-Datei“ · Platinen ·
-
Datei
stm32_spi_eigen.c
// Programm zur initialisierung der SPI-Schnittstelle + Schreibvorgang #include "stm32_spi_eigen.h" GPIO_InitTypeDef GPIO_InitStructure; SPI_InitTypeDef SPI_InitStructure; void initNSS() { //RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA,ENABLE); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
in „AD9833 mittels STM32F072 per SPI ansteuern“ · 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
simple_server.c
bgcolor='#66FFFF'>")); //Hintergrundfarbe plen = fill_tcp_data_p(buf, plen, PSTR("<a style=color:red><h1>STM32F103 WEBSERVER<h1></a>")); /* */ plen = fill_tcp_data_p(buf, plen, "<table border>" ); plen = fill_tcp_data_p(buf, plen, "<thead>"); plen = fill_tcp_data_p(buf, plen, "<tr>"); plen = fill_tcp_data_p
in „Webpage Webserver“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
config-bpir2.txt
is not set # CONFIG_ARCH_LPC32XX is not set # CONFIG_ARCH_SA1100 is not set # CONFIG_ARCH_S3C24XX is not set # CONFIG_ARCH_DAVINCI is not set # CONFIG_ARCH_AT91 is not set # CONFIG_ARCH_MXC is not set # CONFIG_ARCH_STM32 is not set # CONFIG_ARCH_EFM32 is not set # CONFIG_ARCH_LPC18XX is not set # CONFIG_ARCH_MPS2 is not set # # Processor Type # CONFIG_CPU_V7M=y CONFIG_CPU_THUMBONLY=y CONFIG_CPU_THUMB_CAPABLE=y CONFIG_CPU_32v7M=y CONFIG_CPU_ABRT_NOMMU
in „Linux Kernel 5.1.1. auf dem BPi-R2“ · PC Hard- und Software ·
-
PDF
landtiger_v2.0_-_manual__v1.1.pdf
crystal, is the main system clock source, the internal RC oscillator of the CPU can not be used. Y2, 32.768 kHz crystal, is the clock source for the RTC. U4, 50MHZ crystal, is the Ethernet PHY chip DP83848 clock. LandTiger V2.0 User Manual 7 Y3, 8 MHz is the clock for the JLink Debugger interface
-
PDF
ITS4142N_Smart_Switch.pdf
B , n o is e flo o r 7 0 V B B , O N 6 0 5 0 V 1 5 0Ω / 8 -H B 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 Typ. V -Pin Emission at PWM-Mode with 150Ω-matching network bb 1 0 0 9 0 1 5 0 o h m C la s s 6 1 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
in „Smart Power Switch galvanisch entkoppelt ansteuern“ · 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 ·
-
PDF
_IC2__001183650-da-01-en-IC_SWITCH_HISIDE_8C_ISO1H801G_DSO_36_INF.pdf
WR WR OUT0 Control & P0.0 D0 Pn Unitio P0.1 D2 OUT1 P0.3 D3 Parallel P0.4 D4 Interface P0.5 D6 P0.7 D7 µC (i.e reserved C166) OUT7 GND ISO1H801G GNDCC GNDbb Type On-state Resistance Package ISO1H801G 200mΩ PG-DSO-36 Datasheet 3 Version 2.3, 2009-09-16 ISOFACE™ ISO1H801G Pin Configuration and Functionality
in „ISO1H811G Anteuerung mit Atmega 32“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
fatfs_sd.c
#define TRUE 1 #define FALSE 0 #define bool BYTE #include "stm32f2xx_hal.h" #include "diskio.h" #include "fatfs_sd.h" extern SPI_HandleTypeDef hspi3; extern volatile uint8_t Timer1, Timer2; /* 10ms 마다 감소하는 타이머 */ static volatile DSTATUS Stat = STA_NOINIT; /* 디스크
in „ARM [STM32] microSD SPI USB Massenspeicher“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
MKL25Z4.h
0x1u #define PIT_MCR_FRZ_SHIFT 0 #define PIT_MCR_MDIS_MASK 0x2u #define PIT_MCR_MDIS_SHIFT 1 /* LTMR64H Bit Fields */ #define PIT_LTMR64H_LTH_MASK 0xFFFFFFFFu #define PIT_LTMR64H_LTH_SHIFT 0 #define PIT_LTMR64H_LTH(x) (((uint32_t)(((uint32_t)(x))<<PIT_LTMR64H_LTH_SHIFT))&PIT_LTMR64H_LTH_MASK) /* LTMR64L
in „Interrupts bei Keil ARM? (KL25Z)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/* Includes ------------------------------------------------------------------*/ #include "main.h" #include "stm32f3xx_hal.h" /* USER CODE BEGIN Includes */ #include <stdlib.h> #include <stdint.h> #include <stdbool.h> /* USER CODE END Includes */ /* Private variables -----------------------------
in „I2C Verbindung RPi - ST.Nucleo“ · 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
in „STM32f030F4 eigene PCB“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
Touch.c
******/ /* Includes ------------------------------------------------------------------*/ #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 ·
-
Datei
STM32F051_SPI_CONF.c
#include "SPI_CONF.h" unsigned int SPI_RxData; void Init_STM32F051_SPI(void){ RCC->APB2ENR |= RCC_APB2ENR_SPI1EN; // SPI1 Clock activation // Control Register 1 SPI1->CR1 &= ~(1UL<<0); // Clock Phase SPI1->CR1 &= ~(1UL<<
in „Cortexm0 SPI Data Register wird nicht beschrieben“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
spi2_slave.c
Version : 1.0 // Autor : UB // EMail : mc-4u(@)t-online.de // Web : www.mikrocontroller-4u.de // CPU : STM32F4 // IDE : CooCox CoIDE 1.7.4 // GCC : 4.7 2012q4 // Module : GPIO, SPI, MISC // Funktion : SPI-Slave-Funktionen (SPI-1) // Erstellt ein virtuelles SPI-RAM // // Hinweis : mögliche Pinbelegungen /
in „RaspberryPI <- SPI -> STM32F4“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ffconf.h
to reduce code size. / Following table shows allowable settings of some type of processors. / / ARM7TDMI 0 *2 ColdFire 0 *1 V850E 0 *2 / Cortex-M3 0 *3 Z80 0/1 V850ES 0/1 / Cortex-M0 0 *2 x86 0/1 TLCS-870 0/1 / AVR 0/1 RX600(LE) 0/1 TLCS-900 0/1 / AVR32 0 *1 RL78 0 *2 R32C 0 *2 / PIC18 0/1 SH-2 0 *1 M16C 0/1 / PIC24 0 *2 H8S 0 *1 MSP430 0 *2 / PIC32 0 *1 H8/300H 0 *1 8051 0/1 / / *1:Big-endian. / *2:Unaligned memory access is not supported. / *3:Some compilers generate LDM/STM for mem_cpy function. */
in „Problem mit VS1053“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
MonoGLCD.cpp
/* * MonoGLCD.cpp */ #include "MonoGLCD.h" #include "stm32f1xx_hal.h" // defines ------ #define DISPLAY_ON 0xAF #define DISPLAY_OFF 0xAE #define DISPLAY_START_LINE_SET 0x40 //0x40 to 0x7F 63-Stufen #define PAGE_ADRESS_SET 0xB0 //0xB0 to 0xB8
in „[Pollin] Grafik Display Anschluss Verständnisfragen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
simple_server_10.c
bgcolor='#66FFFF'>")); //Hintergrundfarbe plen = fill_tcp_data_p(buf, plen, PSTR("<a style=color:red><h1>STM32F103 WEBSERVER<h1></a>")); plen = fill_tcp_data_p(buf, plen, "<table border>" ); plen = fill_tcp_data_p(buf, plen, "<thead>"); plen = fill_tcp_data_p(buf, plen, "<tr>"); plen = fill_tcp_data_p(
in „Webpage Webserver“ · Mikrocontroller und Digitale Elektronik ·