-
Bild
ST-LINK V2 Debugger mit Anschlusskabel
ST-LINK V2 STM8 & STM32 RST SWCLK SWDIO GND 3.3V SWIM GND 3.3V 5V 5V
in „NRF51 firmware flash mit ST-Link und openocd“ · Mikrocontroller und Digitale Elektronik · · Fotos
-
Bild
ST-LINK V2 Debugger mit Jumper-Kabeln
ST ST-LINK V2 STM8 & STM32 RST 1 GND 2 SWDIO 3 GND 4 SWIM 5 3.3V 6 5.0V 7
in „STM32F103C6T6A Lässt sich nicht programmieren“ · Mikrocontroller und Digitale Elektronik · · Fotos
-
Bild
ST-LINK V2 Programmiergerät mit USB-Adapter und Verkabelung
ST-LINK V2 STM8 & STM32 RST SWDIO GND GND SWIM SWCLK 3.3V 3.3V 5.0V 5.0V 下载器
in „Quick&dirty - schnelle Problemlösungen selbst gebaut“ · Projekte & Code · · Fotos
-
Datei
main.c
#include "stm32f4xx.h" __attribute__((always_inline)) inline void bitCopy( uint32_t *dest, const uint8_t dstBit, const uint32_t src, const uint8_t srcBit ) { register uint32_t temp; __asm__ __volatile__ ( "UBFX %
in „STM32F4 Compiler bremst den Code“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Beispiel.txt
Beispiel 1: Konstrukte für STM32F1xx ==================================== /* Hilfsbezeichnungen zum Port-Konfigurieren */ /* Beispiel: #define wert_fuer_pa0 (mode?+conf?) */ #define input 0 /* Pin ist Input */ #define out10 1 /*
in „STM32F103C8 Platformprojekt mit Display, FATFS und Examples“ · Projekte & Code ·
-
Datei
eventctrl_uc.ino
--------------------------------------------------------------- */ // shiftreg595 sr(2, 3, 15); // stm32 r3-Board (PB7, PB6, PB13) // shiftreg595 sr(5, 3, A2); // V003-Board // shiftreg595 sr(5, 7, 6); // Board 1 shiftreg595 sr(7, 5, 6); // Board 2 /* -------------------------------------------------
in „Schulnotenbewertung eines Arduino-Programms“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
delay.c
//#include "stm32f1xx_hal.h" #include <delay.h> static __IO uint32_t usticks; // __IO -- volatile // SysTick interrupt handler void SysTick_Handler() { //HAL_IncTick(); if (usticks != 0) { usticks--; } } void DelayInit
in „stm32f103 1 us Systick-timer delay“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32_ST3210C_Eval_eeproM.c
#define EEPROM_I2C_ADDR 0xA0 #define I2C_SELECTED I2C1 void I2C_Configuration(void) { I2C_InitTypeDef I2C_InitStructure; GPIO_InitTypeDef GPIO_InitStructure; /* I2C Periph clock enable */ RCC_APB1PeriphClockCmd(RCC_APB1Periph_I2C1, ENABLE); /* GPIO Periph clock enable */ RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB | RCC_APB2Periph_AFIO, ENABLE); // /* GPIO_PinRemapConfig(GPIO_Remap_I2C1, ENABLE); */ /* Configure I2C_EE pins: SCL and SDA */ GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_OD; GPIO_Init(GPIOB, &
in „STM32 Prüfen ob I2C Slave am Bus hängt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32f10x_ld_vl.s
/** ****************************************************************************** * @file startup_stm32f10x_ld_vl.s * @author MCD Application Team * @version V3.3.0 * @date 04/16/2010 * @brief STM32F10x Low Density Value Line Devices vector table for RIDE7 * toolchain. * This module performs: * - Set
in „STM32-Discoveryboard: FTDI Treiber/OpenOCD/Degugging“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f103zet6_cantest_send.c
uint16_t CAN_ID; uint8_t CAN_DATA0,CAN_DATA1,CAN_DATA2,CAN_DATA3,CAN_DATA4,CAN_DATA5,CAN_DATA6,CAN_DATA7; uint8_t CanFlag; int main(void) { // Initialiesieren der CAN-Hardware CAN_Configuration(); printf("CAN-Bus Test \r\n"); printf("CAN-Bus Speed 100kHz \r\n"); /* Infinite loop */ while (1) { delay_ms(1000); /* delay 1000ms */ CanWriteData(0xA5A5); } } void CanWriteData(uint16_t ID) { CanTxMsg TxMessage; uint32_t i = 0; uint8_t TransmitMailbox = 0; /* transmit */ TxMessage.StdId = ID; //TxMessage.ExtId = 0x00; TxMessage.RTR = CAN_RTR_DATA; TxMessage.IDE = CAN_ID_STD; TxMessage.DLC = 8; TxMessage.Data
in „STM32 can Message“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f103vct6_cantest_receive.c
uint16_t CAN_ID; uint8_t CAN_DATA0,CAN_DATA1,CAN_DATA2,CAN_DATA3,CAN_DATA4,CAN_DATA5,CAN_DATA6,CAN_DATA7; uint8_t CanFlag; int main(void) { // Initialiesieren der CAN-Hardware CAN_Configuration(); printf("CAN-Bus Test \r\n"); printf("CAN-Bus Speed 100kHz \r\n"); /* Infinite loop */ while (1) { if(CanFlag==ENABLE) { CanFlag=DISABLE; printf("CAN Receive Data \r\n"); printf("CAN_ID %x \r\n",CAN_ID); printf("CAN_DATA0 %x \r\n",CAN_DATA0); printf("CAN_DATA1 %x \r\n",CAN_DATA1); printf("CAN_DATA2 %x \r\n",CAN_DATA2); printf("CAN_DATA3 %x \r\n",CAN_DATA3); printf("CAN_DATA4 %x \r\n",CAN_DATA4); printf("CAN_DATA5
in „STM32 can Message“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Pinbelegung eines CH32V003F4P6 Mikrocontrollers
CH32V003F4P6 1 PD4/A7/UCK/T2CH1ETR/OPO/T1CH4ETR_ 2 PD5/A5/UTX/T2CH4_/URX_ 3 PD6/A6/URX/T2CH3_/UTX_ 4 PD7/NRST/T2CH4/OPP1/UCK_ 5 PA1/OSCI/A1/T1CH2/OPN0 6 PA2/OSCO/A0/T1CH2N/OPP0/AETR2_ 7 VSS 8 PD0/T1CH1N/OPN1/SDA_/UTX_ 9 VDD 10 PC0/T2CH3/UTX_/NSS_/T1CH3_ 20 PD3/A4/T2CH2/AETR/UCTS/T1CH4 19 PD2/A3/T1CH1/T2CH3/T1CH2N 18 PD1/SWIO/AETR2/T1CH3N/SCL_/URX_ 17 PC7/MISO/T1CH2_/T2CH2_/URTS_ 16 PC6/MOSI/T1CH3N/UCTS_/SDA 15 PC5/SCK/T1ETR/T2CH1ETR/SCL_/UCK_/T1CH3 14 PC4/A2/T1CH4/MCO/T1CH1CH2N 13 PC3/T1CH3/T1CH1N/UCTS_ 12 PC2/SCL/URTS/T1BKIN/AETR/T2CH2/T1ETR_ 11 PC1/SDA/NSS/T2CH4_/T2CH1ETR/T1BKIN/URX_
in „CH32V003 - Experimente mit dem Zehn Cent-Mikrocontroller“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
STM32H753BIT6_Linker_Script.ld
ENTRY(ISR_RESET) MEMORY { FLASH_BANK_1 (rx) : ORIGIN = 0x08000000, LENGTH = 1024K FLASH_BANK_2 (rx) : ORIGIN = 0x08100000, LENGTH = 1024K SRAM_ITCM (rwx) : ORIGIN = 0x00000000, LENGTH = 64K SRAM_DTCM (rwx) : ORIGIN = 0x20000000, LENGTH = 128K SRAM_AXI (rwx) : ORIGIN = 0x24000000, LENGTH = 512K SRAM_1 (rwx) : ORIGIN = 0x30000000, LENGTH = 128K SRAM_2 (rwx) : ORIGIN = 0x30020000, LENGTH = 128K SRAM_3 (rwx) : ORIGIN = 0x30040000, LENGTH = 32K SRAM_4 (rwx) : ORIGIN = 0x38000000, LENGTH = 64K SRAM_BACKUP (rwx) : ORIGIN = 0x38800000, LENGTH = 4K SRAM_EXT_SDRAM (rwx) : ORIGIN = 0xC0000000, LENGTH = 8M
in „GCC Discarded Section in Disassembly“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
startup_stm32f10x_md_vl.s
**************** (C) COPYRIGHT 2010 STMicroelectronics ******************** ;* File Name : startup_stm32f10x_md_vl.s ;* Author : MCD Application Team ;* Version : V3.3.0 ;* Date : 04/16/2010 ;* Description : STM32F10x Medium Density Value Line Devices vector table ;* for EWARM5.x toolchain. ;* This module
in „IAR for ARM - IRQ-Funktion nur kompiliert wenn im Code referenziert“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f1xx_hal_msp_-_slave.c
/** ****************************************************************************** * File Name : stm32f1xx_hal_msp.c * Description : This file provides code for the MSP Initialization * and de-Initialization codes. ****************************************************************************** ** This
in „STM32F103 SPI Slave + Master“ · 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
in „ROM-Auslastung von C++-Programm reduzieren“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32-P207-P407_rev_D.pdf
D12 PE15 C86 C91 3 4 1M A10 23 A10 I/O10 31 D10 J1 JOYSTICK 1 C1+ 2 2 1 C1+ 2 k C SD/MMC A11 24 A11 32 D11 STM32F207ZET6 100nF 2 C88 RX_BOOT_E TX_BOOT_E 100nF 2 C93 R 1 R29 0R A12 25 A12 I/O11 35 D12 UP UP LEFLEFT RM5G4 LEFT 3 C1- V+ 100nF Open Open 3 C1- V+ 100nF SD_D3/USART3_RX/SPI3_MISO R24 NA 2 CD
in „Mit STM32F4 einen Laser ansteuern“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
MK_STM32F4_Sensorboard_Schematic-2.pdf
1 2 3 4 5 6 1 2 3 4 5 6 3 3 3 3 EXTI TP24 TP25 TP20 TP29 V V V V + + + + TP32 TP27 TP21 TP31 TP30 C15 C12 ADC LSM330DLC L3GD20 5 k 2 k 1 . 1 . 1uF 4.7uF U$8 3 9 2 3 8 8 5 5 6 R 4 R 4 U$7 V U$3 A A A 21 24 + 1 2 A BOOT0 BOOT1 GND GND B E E E D D 1 1 1 25 VDD_IO SCK_A/G 28 SPI3_
in „EAGLE: Sprungfahnen“ · Platinen ·
-
PDF
STM32F407ZET6_sch-1.pdf
*▯ ▯▯ ▯▯ 3*▯ ▯▯ ▯▯ ▯▯ ▯▯ 3*▯ ▯▯ ▯▯ 3)▯▯ 3*▯ ▯▯ ▯▯ 3*▯ ▯ 3(▯ ▯▯ ▯▯ 3*▯ 3*▯ ▯▯ ▯▯ 3*▯ ▯▯▯9▯UHJXODWRU STM32-USB Slave ,) JTAG/SWD ▯,) ISP 6HULDO▯,) 3(▯ ▯▯ ▯▯ 3(▯ 3'▯▯ ▯▯ ▯▯ 3'▯▯ ▯ 3(▯▯ ▯▯ ▯▯ 3(▯▯ 3'▯▯ ▯▯ ▯▯ 3'▯▯ 3(▯▯ ▯▯ ▯▯ 3(▯▯ 3'▯▯ ▯▯ ▯▯ 3'▯▯ 3(▯▯ ▯▯ ▯▯ 3(▯▯ 3'▯ ▯▯ ▯▯ 3'▯ 3%▯▯ ▯▯ ▯▯ 3%▯▯ 3%▯▯ ▯▯ ▯▯ 3%▯▯ 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
FlashDriver.h
FLASHDRIVER_H /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx.h" /* Private function prototypes -----------------------------------------------*/ void df_read_open(uint32_t addr); void df_write_open(uint32_t addr); void df_read(uint8_t *buf,uint16_t size); void df_write(uint8_t *buf,uint16_t size); void df_read_seek(uint32_t addr); void df_write_seek(uint32_t addr); void df_read_close(void); void df_write_close(void); #endif /************************ (C) COPYRIGHT HAOYU Electronics *****END OF FILE****/
in „Font in SPI Flash schreiben“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
---------------------------------------- */ #elif defined (__XC8) #define _XTAL_FREQ 32000000UL // 32MHz clock #define FOSC _XTAL_FREQ #define FCY FOSC / 4UL // --> 8MHz #define BAUDRATE 19200UL #define BRG (( FCY 16 BAUDRATE ) -1UL) #include <stdio.h> #include <stdlib.h> int main (void) { IRMP_DATA
in „IRMP-Anwendung“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Leiterplatte Nucleo Board Clock Shield
IRF9310 WordClock Shield Nucleo B used to connect ESP8266, DS32 STM32F411RE, DS32 OR, DS1820, DCF77, DS32 U5 - 01 (c) Jan 2016 by T. Giese
in „WordClock mit WS2812“ · Projekte & Code · · Platinenfotos
-
Datei
lcd_init.h
Hardware (C) Christian Julius 3.2016 ------------------------------------------------------- */ #include "stm32f10x_conf.h" /* ------------ Standard Include Files --------------- */ #include <stdint.h> /* ------------ Special Include Files --------------- */ /* ------------ Projekt Include Files -----------
in „Basteltip: STM32F103 DIP40 Board“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd_init.h
Hardware (C) Christian Julius 3.2016 ------------------------------------------------------- */ #include "stm32f10x_conf.h" /* ------------ Standard Include Files --------------- */ #include <stdint.h> /* ------------ Special Include Files --------------- */ /* ------------ Projekt Include Files -----------
in „Lebensdauer von lokalen Variablen“ · Softwareentwicklung ·
-
Datei
spi_oled.c
#include "STM32F4xx.h" #include "_mcpr_stm32f407.h" #include "spi_oled.h" #include "tools.h" #include "timer.h" void spiInit(void) { //CONFIGURE I/Os FOR SPI2 //SCLK = PB13 setOutputPort(B, 13, ALTERNATIVE, PUSHPULL
in „0,96 Oled mit STM32F407“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <stdint.h> #include <stdbool.h> // Bibliotheke des verwendeten Mikrocontrollers #include "stm32f446xx.h" #include "system_stm32f4xx.h" // Funktionsprototypen void initialisiereClock(void); void initialisiereGPIO(void); void initialisiereSPI(void); void initialisiereSystick(void); void sendeBytesUSART
in „ADC über SPI“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
gpio.h
#ifndef GPIO_H_ #define GPIO_H_ #include "stm32l4xx_hal_rcc.h" #define PORTMODE_OFFSET 0x00 #define MODE_OUTPUT 0x1 #define MODE_INPUT 0x0 #define ODR_OFFSET 0x14 #define IDR_OFFSET 0x10 #define AHB2ENR_REGOFFS 0x4c #define PIN_CENTER 0 #define
in „STM32L4 LED durch Tastedrücken einschalten“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
CAN1_0.ino
// -------------------------------------- Umbenenen der STM Pins // Bliotheken //------------------------------------------------------------------------------------------------------------Testweise auskommentiert #include <assert.h> #include "stm32f103.h" /
in „Arduino Blue Pill & CAN mit SN65HVD230“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
eeprom.c
/ Librarys -------- */ /* ---------------- System Include Files -------------------- */ #include "stm32f10x_conf.h" #include "system_stm32f10x.h" /* ----------------- C Standard Include Files --------------- */ #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include
in „STM32F103: EEPROM Abstürze abfangen“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
schematics.pdf
PIU059 P OHALL2 L2 PI0 P22 PI101 VDDA VSSA PI1012 P H3 H 3 PIU101 PA8 PB8 PIU061 P OCAN_RXRX P1 P1 PI0 STM32F405RGT6 P H2 H 2 PIU102 PA9 PB9 PIU062 P OCAN_TXTX C15 CO35 CO31 P H1 H 1 PIU103 PIU029 RSM P1 2.2µF P22.2µF PI02.2µF PIU104 PA10 PB10 PIU030 TSN PI03 P32 POUSB_DMD M 45 PA11 PB11 33 SWCLK POUSB_DPD
in „BLDC Motorcontroller 200A 48V basierend auf VESC“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
LedVuMeter.ino
// LED VU-Meter // turns on the LEDs depending on the sound level detected from the microphon // STM32F4 Discovery #define USERBUTTON PA0 #define GREENLED PD12 #define ORANGELED PD13 #define GREDLED PD14 #define BLUELED PD15 #define REDLEDOTGOVERCURRENT PD5 #define MICROPHON_CLK_INPUT PB10 #define
in „STM32F4 Discovery Arduino“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
eeprom.c
/ Librarys -------- */ /* ---------------- System Include Files -------------------- */ #include "stm32f10x_conf.h" #include "system_stm32f10x.h" /* ----------------- C Standard Include Files --------------- */ #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include
in „Lebensdauer von lokalen Variablen“ · Softwareentwicklung ·
-
Datei
isrhdl.c
* */ #include "isrhdl.h" /* ---------------- System Include Files ------------------- */ #include "stm32f10x_conf.h" /* ----------------- Standard Include Files ------------------- */ #include <stdbool.h> #include <time.h> /* ----------------- Projekt Include Files -------------------- */ #include "main.h
in „EmBitz Debugging Problem mit STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
spi_oled.c
#include "STM32F4xx.h" #include "_mcpr_stm32f407.h" #include "spi_oled.h" #include "tools.h" #include "timer.h" void spiInit(void) { //CONFIGURE I/Os FOR SPI2 //SCLK = PB13 setOutputPort(B, 13, ALTERNATIVE, PUSHPULL
in „0,96 Oled mit STM32F407“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
Ionescu. // // ---------------------------------------------------------------------------- #include <stm32f10x_conf.h> #include <stdio.h> #include "diag/Trace.h" // ---------------------------------------------------------------------------- // // Standalone STM32F1 empty sample (trace via ITM). // //
in „STM32F1 sendet kein CAN“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
pcf8574.c
#include <stm32f10x.h> #include <stm32f10x_i2c.h> #include "pcf8574.h" #define PCF8574_I2Cx_RCC RCC_APB1Periph_I2C1 #define PCF8574_I2Cx I2C1 #define PCF8574_I2C_GPIO_RCC RCC_APB2Periph_GPIOB #define PCF8574_I2C_GPIO
in „STM32 I2C Probleme mit PCF8574“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
pensor.pdf
1 2 3 4 5 6 7 8 +3.3V +3.3V A 0 0 A 1 9 k 1 1 C39 V+ D1 R R 4 O D N1 STM32G051 6 CSB D V 100n MIC5236-3.3 +3.3V V SCL 2 SCK X2:2 2 IN OUT 3 4 VDD INT 7 L1 SDA 4 SDI 4 EN ERR 1 F.B.,0.2A 4 5 SDO 1 C3 C12 * C11 C10 C8 C7 C2 D2 100n 68u,35V- 5 68u 100n 2u2 10n 100n 3 8 9 E5
in „Datenlogger Pendeluhr“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
mmc_config.h
/* * Doku, siehe http://www.mikrocontroller.net/articles/AVR_FAT32 * Neuste Version: http://www.mikrocontroller.net/svnbrowser/avr-fat32/ * Autor: Daniel R. */ #ifndef CONFIG_H_ #define CONFIG_H_ #include <ctype.h> #include <stdint.h> //#include "stm32f10x.h" // wegen
in „MMC SD library FAT16 FAT32 read write“ · Projekte & Code ·
-
Datei
mmc_config.h
/* * Doku, siehe http://www.mikrocontroller.net/articles/AVR_FAT32 * Neuste Version: http://www.mikrocontroller.net/svnbrowser/avr-fat32/ * Autor: Daniel R. */ #ifndef CONFIG_H_ #define CONFIG_H_ #include <ctype.h> #include <stdint.h> //#include "stm32f10x.h" // wegen
in „AVR und großer Speicher“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f10x_conf.h" #include "main.h" void eraseFlashPage(uint8_t page) { uint32_t addr = FLASH_ADDR + 0x400 * page; FLASH_Unlock(); FLASH_ClearFlag(FLASH_FLAG_PGERR | FLASH_FLAG_WRPRTERR | FLASH_FLAG_EOP
in „STM32F103 bootloader tool“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Verfuegbare_Teile.pdf
Siemens 3RT1017 - 1AP01 10 170 204 28 Siemens 3RH1131 - 1AP00 3 39 46.8 29 Siemens 3RH1122 - 1BB40 2 32 38.4 30 Siemens 3RH1131 - 1BB40 4 64 76.8 31 Siemens 3TX7014 - 1BM00 6 48 57.6 32 Siemens 3RN1012 - 1CB00 1 44 52.8 33 Siemens 3RP1505 - 1BP30 7 329 394.8 34 Siemens 3RA1921 - 1B 76 228 273.6 35 Siemens
in „[V] Diverses Elektromaterial. Lagerauflösung.“ · Markt ·
-
Datei
blinky.c
software. */ /******************************************************************************/ #include "stm32f10x.h" #define LED_BLINK_RATE 50 /* rate = LED_BLINK_RATE * systick */ #define LED_NUM 2 /* Number of user LEDs */ const unsigned long led_mask[] = { 1UL<<8, 1UL<<9 }; // = PORTC 8,9 erkannt #define USER1 0x0001 /* PA0 : USER1 */ #define UNBOUNCE_CNT 10 /* unbounce the Push Button */ uint32_t ledVal = 1; uint32_t ledOn = 0; uint32_t ledBlink = 0; /*---------------------------------------------------------------------------- configer LED pins *--------------------------------------------
in „Suche etwas Hilfe bei ATM/STM32 Einstieg“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2c_referenz.c
#include <stdio.h> #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "i2c.h" #include "debug.h" static void I2C1_InitI2C(void); static void I2C2_InitI2C(void); static int8_t I2C1_Timeout(I2C_TypeDef* I2Cx, int8_t val)
in „STM32F103C8T6 Blue Pill - SSD1306 - u8g2“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2c.c
#include <stdio.h> #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "i2c.h" #include "debug.h" static void I2C1_InitI2C(void); static void I2C2_InitI2C(void); static int8_t I2C1_Timeout(I2C_TypeDef* I2Cx, int8_t val)
in „STm32Fxxx: I2C Hardware Experten gesucht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
rtc.h
__RTC_H /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" typedef struct { uint16_t year; /* 1..4095 */ uint8_t month; /* 1..12 */ uint8_t mday; /* 1.. 31 */ uint8_t wday; /* 0..6, Sunday = 0*/ uint8_t hour; /* 0..23 */ uint8_t min; /* 0..59 */ uint8
in „STM32F1 RTC eine Sekunde generieren“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LinkerScript.ld
*************** ** ** File : LinkerScript.ld ** ** Author : Ac6 ** ** Abstract : Linker script for STM32F429ZI Device with ** 2048KByte FLASH, 192KByte RAM ** ** Set heap size, stack size and stack location according ** to application requirements. ** ** Set memory bank area and size if external memory is used. ** ** Target : STMicroelectronics STM32 ** ** Environment : System Workbench for MCU ** ** Distribution: The file is distributed as is, without any warranty ** of any kind. ** ************************************************************
in „STM32 linker script stack größe“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LinkerScript.ld
** ** ** File : LinkerScript.ld ** ** Author : Ac6, Benny Zinke ** ** Abstract : Linker script for STM32F746NG Device with ** 1024KByte FLASH, 320KByte RAM ** ** Set heap size, stack size and stack location according ** to application requirements. ** ** Set memory bank area and size if external memory is used. ** ** Target : STMicroelectronics STM32 ** ** Environment : System Workbench for MCU ** ** Distribution: The file is distributed as is, without any warranty ** of any kind. ** ************************************************************
in „STM32F7 & malloc“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
adc.c
/ ST includes //************************************************************************ #include "stm32f4xx_hal.h" //************************************************************************ // Project includes //************************************************************************ #include "adc.h
in „STM32F4 - triple ADC mit DMA funktioniert nur 1x“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32l0xx.h" // The current clock frequency uint32_t SystemCoreClock=2097000; // Change system clock to 32 MHz using 8 MHz crystal void init_clock() { // Wait until voltage regulator is stabilized while
in „STM32L073RZ läuft auf HSE nur halb so schnell wie erwartet“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Training_TC1796_2007-04-23_PWM.pdf
mid period interrupt in file MAIN.c before the forever loop at (Main,9): // USER CODE BEGIN (Main,9) STM_ICR_CMP0EN = 1; // enable the stm interrupt for(;;) // forever ; // USER CODE END In file STM.c define the *dutyU, *dutyV, *dutyW as extern and add to function STM_viSRN0 (SRN0,3): // USER CODE BEGIN (SRN0,3) STM_ICR_CMP0EN = 0; // disable the stm interrupt GPTA0_LTCCTR02_REN = 1; // enable mid period interrupt dutyU++; dutyV++; dutyW++; // circular step through the sinus lookup table // USER CODE END Release
in „Raumzeigermodulation auf Tricore“ · Mikrocontroller und Digitale Elektronik ·