-
Datei
Ultraschall.c
---------------|___ Zyklus max ca 19 msec // 04.10.2011 Timing ok (oszi), Auswertung nok #include <avr/io.h> #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <avr/interrupt.h> #include <util/delay.h> #include "mydefs.h" #define LOBYTE(x) (uint8_t)((uint16_t)x) #define HIBYTE(x) (uint8
-
Datei
Code.txt
Auf ATmega32: Master: ------------------------------------------------------------------------------------------------- /***************************************************** This program was produced by the CodeWizardAVR
in „Master/Slave TWI von mega32 auf mega8 kopieren“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
freq-gen.c
Backlight an B3 thx an Arne Groh für die Grundidee thx an Herrn Dannegger für 'outfloat' */ #include <avr/io.h> #include <avr/interrupt.h> #include <avr/eeprom.h> #include <util/delay.h> #include <stdio.h> #include <stdlib.h> #include "lcd.h" uint8_t lcd_string[1], save, eeChar EEMEM; uint16_t takt, timer0count
in „Einstellbarer Frequenzgenerator für 0.12 Hz - 8 MHz mit Atmega 8 und Bascom“ · Projekte & Code ·
-
Datei
hello_world.c
* Jonathan Landolt * 07.04.2016 * Version 1 *********************/ #include "u8g.h" #if defined(__AVR__) #include <avr/interrupt.h> #include <avr/io.h> #include <avr/sleep.h> #include <avr/power.h> #include <avr/wdt.h> #endif #define LINKS OCR1A-=10 #define RECHTS OCR1A+=10 #define RUNTER OCR1B+=10
in „zwei ADC zeigen dasselbe an“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
mmctest.c
#include <avr/io.h> #define F_CPU F_OSC #include <util/delay.h> #include <stdlib.h> /* just to simplify setting/clearing single bits */ #define SETBIT(x, y) x |= _BV(y) #define CLEARBIT(x, y) x &= ~_BV(y) /* SPI
in „Zugriffszeit auf SD/MMC über SPI“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
scheduler.c
interrupts make it even worse. */ struct taskpoint schedlist[SCHED_TASKS] PROGMEM = { {rs232_task,8}, {t_2,64}, //Might use a lot of floating point libs calls ad_start {t_3,32}, //Might use a lot of local variables menu_start {t_4,32}, //lcd_start {t_5,32}, //user_start {t_6,32} //oputput_start }; u16 volatile
in „Kooperatives Multitasking“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
atmel-42330-atmel-ice_userguide.pdf
a powerful development tool for debugging and programming ARM Cortex -M based Atmel SAM and Atmel AVR microcontrollers with On-Chip Debug capability. It supports: • Programming and on-chip debugging of all Atmel AVR 32-bit microcontrollers on both JTAG and aWire interfaces ® • Programming and on-chip
in „AVRISP mkII Connect Failed“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Atmel-ICE_UserGuide.pdf
a powerful development tool for debugging and programming ARM Cortex -M based Atmel SAM and Atmel AVR microcontrollers with On-Chip Debug capability. It supports: • Programming and on-chip debugging of all Atmel AVR 32-bit microcontrollers on both JTAG and aWire interfaces ® • Programming and on-chip
in „Atmel ICE Programmer und UPDI“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
wave.h
Reddmann HaReddmann at t-online dot de */ #ifndef WAVE_H #define WAVE_H #include <inttypes.h> #include <avr/pgmspace.h> #define WAVE_COUNT 32 typedef struct { const prog_uint8_t* start; const prog_uint8_t* stop; const uint16_t energy; } wave_data_t; #if 0 #define WVFACTOR 1 const prog_uint8_t wave[827] PROGMEM
in „Glühwürmchen in Rotkohlglas gefangen“ · Projekte & Code ·
-
Datei
adc.c
Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. */ #include <avr/io.h> #include <avr/interrupt.h> //#include "pwm.h" //#include "highvoltage.h" #include "adc.h" #include "leds.h" unsigned char _adc_current_pos; unsigned int volatile _adcdata[ADC_adcs]; void adc_init
in „ADC - immer bizarre Werte“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
MP3Example.c
:52:12 * Author: Domi */ #define F_CPU 32000000 #define USART USARTF0 #define VSSPI SPIE #include <avr/io.h> #include <stdlib.h> #include <util/delay.h> #include <stdbool.h> #include "essentials/avr_compiler.h" #include "essentials/clksys_driver.h" #include "VS1053_Buffer.h" VS_Buffer_t VSBuffer; ISR
in „FIFO lösung für 1MBaud zu 0,32MBaud Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
HomeAT.c
#include<string.h> #include<avr/io.h> #include <avr/eeprom.h> #include <avr/interrupt.h> #include <inttypes.h> #include"uart.h" #include"SPI.h" #include<stdio.h> #define hours 0x02 #define minutes 0x01 #define seconds 0x00 #define
-
Datei
i2c.c
/*! \file i2c.c \brief I2C interface using AVR Two-Wire Interface (TWI) hardware. */ //***************************************************************************** // // File Name : 'i2c.c' // Title : I2C interface using AVR Two-Wire Interface
in „TWI, I2C Master-Slave mit AVR“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
m8_n3410.c
Seelig ---------------------------------------------------------- */ #include <util/delay.h> #include <avr/io.h> #include <avr/pgmspace.h> char wherex= 0; char wherey= 0; char invchar= 0; // = 1 fuer inversive Textausgabe #define speed 200 #define fullascii // ASCII Zeichensatz wird auch mit // Kleinbuchstaben
in „ATmega8 und Nokia Display / SPI“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
Toolbox */ /* */ /************************************************************************/ #include <avr/io.h> #include <avr/interrupt.h> #include <avr/eeprom.h> #include <util/delay.h> // CPU: ATmega8 //------------------------------------------------------------------------ #define XTAL 8e6 // 8MHz #
in „Drehencoder reagiert ohne Abfrage“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ADS1293_3_Kanal_24BIT_EKG_SPI_.pdf
5 0xC350 5120 1040 0.572 16 0xC35000 320 65 1.86 1.62 32 0xC35000 160 32 1.36 1.16 64 0xC35000 80 16 1.02 0.85 128 0xC35000 40 8 0.79 0.64 4 0xF30000 1067 215 3.41 3.04 6 0xE6A900 711 145 2.74 2.42 8 0xF30000 533 110 2.38 2.07 12 0xE6A900 356 70 1.96 1.70
in „EKG-IS ADS1293 rückt keine Messwerte raus“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tft_data.c
0xF5, 0xA2, 0xCF, 0xBD, 0x6F, 0x79, 0x5F, 0xF1, 0x2E, 0x07, 0x84, 0x9D, 0x30, 0x4E, 0x82, 0x05, 0x64, 0xC6, 0x51, 0x6D, 0x32, 0x3B, 0x43, 0x1B, 0x32, 0x71, 0xCA, 0x25, 0xF2, 0xE0, 0xE3, 0xEC, 0x1E, 0x2B, 0xF2, 0xFA, 0x7D, 0x7B, 0xCC, 0xB2, 0xC8, 0xB8, 0xAA, 0x2B, 0x0D, 0xAF, 0xA5, 0x7F, 0xDB, 0xF9,
-
Datei
avr_adc_timer_test.c
External clock 7,372 Mhz *********************************************/ #include <stdlib.h> #include <avr/io.h> #include <inttypes.h> #include <util/delay.h> #include <avr/interrupt.h> #include <avr/signal.h> #include "uart.h" /* define CPU frequency in Mhz here if not defined in Makefile */ #ifndef F_CPU
in „Woher kommt der Timerüberlauf“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Programm.c
BAUD-1 #define true 1 #define false 0 #define STK500 false /*Einbinden der Bibliotheken*/ #include <avr/io.h> #include <util/delay.h> #include <avr/sleep.h> #include <avr/interrupt.h> #include <string.h> #include <stdlib.h> /*globale variablen*/ volatile uint8_t uart_flag; volatile uint8_t uart_data =
in „Externer Interrupt löst nach Sensorsignal Reset aus“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.cpp
05.01.2024 * Author : xxx */ #define F_CPU 9600000 // ---CKDIV8-Fuse muss deaktiviert sein !!!--- #include <avr/io.h> #include <stdlib.h> #include <avr/interrupt.h> #include <avr/pgmspace.h> #include <stdbool.h> #ifndef sbi #define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit)) // setzt das angegebene Bit auf 1 #
in „AVR ATTiny13A Problem mit Servo + LED-Ansteuerung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Blackstorm_Atmega8_3.bas
**************************************** ' Original übernommen von http://blackstrom.derschwarz.de/avr/avr_uhr/index.shtml ' Wolfgang Schwarz ' Modifiziert für Atmega8 und 1Mhz Quarz ' Lauflicht zu jeder Stunde '******************************************************************************* ' µC Deklarationen
in „Attiny13 Schalter“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Blackstorm_Atmega8_Lauflicht.bas
**************************************** ' Original übernommen von http://blackstrom.derschwarz.de/avr/avr_uhr/index.shtml ' Wolfgang Schwarz ' Modifiziert für Atmega8 und 1Mhz Quarz ' Lauflicht zu jeder Stunde '******************************************************************************* ' µC Deklarationen
in „Multiplexuhr mit Stundensignal (Lauflicht)“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ADS1293_3_Kanal_24BIT_EKG_SPI_Dez_2014.pdf
5 0xC350 5120 1040 0.572 16 0xC35000 320 65 1.86 1.62 32 0xC35000 160 32 1.36 1.16 64 0xC35000 80 16 1.02 0.85 128 0xC35000 40 8 0.79 0.64 4 0xF30000 1067 215 3.41 3.04 6 0xE6A900 711 145 2.74 2.42 8 0xF30000 533 110 2.38 2.07 12 0xE6A900 356 70 1.96 1.70
in „Warum soll ADS1293 mit einem 4,096 MHz Quarz betrieben werden?“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Ausschnitt eines Datenblatts für AVR128DA Mikrocontroller
AVR128DA28/32/48/64 RTC - Real-Time Counter 24.5 PIT Functional Description 24.5.1 Initialization 24.5.2 PIT Timing © 2021 Microchip Technology Inc.
in „AVR64EA28: PIT-Interrupt“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
yamts.c
global.h **/ #include <avr/io.h> // include I/O definitions (port names, pin names, etc) #include <avr/interrupt.h> // include interrupt support // project/system dependent defines // CPU clock speed #define F_CPU 16000000 //
in „Fehlermeldung vom GCC-Assembler“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
UI-Messung_Textpad_erweitert.asm
high(mkspg) mov mconst_h,temp rcall multipli ;ADC-Wert mit Multiplikator multiplizieren rcall lcdcrs64 ;LCD-Cursor auf Anfang 2te Zeile rcall ascout ;(Multiplizierten ADC-Wert dezimal ausgeben) lds math4b_l,puffer ;ADC-Wert Kopie zurück in die Rechenregister lds math4b_ml,puffer+1 lds math4b_mh,puffer
in „Ungenauigkeit beim ATtiny26 ADC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
OLED_2_42_SSD1309_test_igel1_v006e.ino
... > Install "U8g2 (by Oliver <olikraus@gmail.com>)" #include <SPI.h> #include <Wire.h> #include <avr/io.h> #include <util/delay.h> #include <util/atomic.h> #include <avr/interrupt.h> #include <EEPROM.h> #include <Adafruit_NeoPixel.h> // make sure, you import the Adafruit lib in Arduino IDE before using
in „Induktiver Positionssensor - Fragen dazu“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <avr/io.h> #include "lcd-routines.h" #include <util/delay.h> #include <avr/sleep.h> #include <stdlib.h> #include <string.h> #include <avr/eeprom.h> #include <avr/wdt.h> #include <math.h> //AVR-Typenabhänggikeit
-
Datei
source-code.txt
///////////////////////////////////////////////////////////////// //Diplomarbeit Hexapod: //for Win32.Devbug //Microcontroller: Atmel ATMEGA 8-16PU //Programmierer: Ralph Ankele //Programmiersprache: C //Title: Ultraschallsensoren.c //Datum 08.03.2009 //Version 1.0 /////////////////////////////////////////////////////////////////////////////////////////////////////// //Includes #include <avr/io.h> //input/output header #include <avr/interrupt.h> //interrupt header //Globale Varibeln unsigned int zeit, entfernung, timerwert; //Prototypen Init(Unterprogramme) void TIMER2_INIT(); void TIMER1
in „timer1compare interrupt wird ausgelöst obwohl der timer gestoppt ist“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
source-code.txt
///////////////////////////////////////////////////////////////// //Diplomarbeit Hexapod: //for Win32.Devbug //Microcontroller: Atmel ATMEGA 8-16PU //Programmierer: Ralph Ankele //Programmiersprache: C //Title: Ultraschallsensoren.c //Datum 08.03.2009 //Version 1.0 /////////////////////////////////////////////////////////////////////////////////////////////////////// //Includes #include <avr/io.h> //input/output header #include <avr/interrupt.h> //interrupt header //Globale Varibeln unsigned int zeit, timerwert; volatile int entfernung; //Prototypen Init(Unterprogramme) void TIMER2_INIT
in „externern interrupt löst von selbst aus“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test.c
Mitgliedern dieser Seite. ------------------------------------------------------------*/ #include <avr/io.h> #include <avr/interrupt.h> // // Die Belegung der 7 Segmente im Array definieren // // Bitzuordnung zu den Segmenten: // // 0 // **** // 5 * * 1 // * 6 * // **** // 4 * * 2 // * 3 * // **** //
in „Atmega 16 Analogwert auf 7-Segmet ausgeben“ · Projekte & Code ·
-
Datei
Error.txt
jan@JANS-LAPTOP:~/Roboter/AVR/RN_Control_1.4$ make avr-gcc -mmcu=atmega32 -Wall -gdwarf-2 -std=gnu99 -DF_CPU=1000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -MD -MP -MT RNCtrl.o -MF dep2/RNCtrl.o.d
in „Mikrocontrollerprogrammierung mit Ubuntu (AVRISPmkII/ATMega32)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
objdump.txt
assert_param(IS_GPIO_PIN_SOURCE(GPIO_PinSource)); assert_param(IS_GPIO_AF(GPIO_AF)); temp = ((uint32_t)(GPIO_AF) << ((uint32_t)((uint32_t)GPIO_PinSource & (uint32_t)0x07) * 4)) ; 8002c5c: 787a ldrb r2, [r7, #1] 8002c5e: 887b ldrh r3, [r7, #2] 8002c60: f003 0307 and.w r3, r3, #7 8002c64: ea4f 0383 mov.w
in „STM32F4 HardFault Interrupt bei stdlib Funktionen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Eclipse.txt
Frontkarte.elf: file format elf32-avr Sections: Idx Name Size VMA LMA File off Algn 0 .text 0000065c 00000000 00000000 00000094 2**1 CONTENTS, ALLOC, LOAD, READONLY, CODE 1 .data 00000004 00802000 0000065c 000006f0 2**0 CONTENTS, ALLOC
in „XMega Eclipse, AVR-Studio Interrupt Unterschiede“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/* SMBus Control for SMBus 1.1 Battery Controller */ #include <avr/io.h> #include <avr/interrupt.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <util/delay.h> // project headers #include "setup.h" // Peter Fleury's LCD Lib #include "lcd.h" /
in „Wer kennt den BQ2040 - Gas Gauge IC with SMBus Interface“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
main.c
/* SMBus Control for SMBus 1.1 Battery Controller */ #include <avr/io.h> #include <avr/interrupt.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <util/delay.h> // project headers #include "setup.h" // Peter Fleury's LCD Lib #include "lcd.h" /
in „Notebook Zellenspannungen auslesen“ · PC Hard- und Software ·
-
Datei
first_try.c
Segment-LED Anzeige an Schieberegister 74595. Digits an PORTC */ #define F_CPU 8000000UL #include <avr/io.h> #include <util/delay.h> #include <avr/interrupt.h> #define LED_off 0b11111111 #define ebene_0 0b11111110 #define ebene_1 0b11111101 #define ebene_2 0b11111011 #define ebene_3 0b11110111 #define
in „Die ersten Versuche in C“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/** * \mainpage Webmodule * * In diesem Projekt werden einige \ref mainloop "Erweiterungen zur ETH32-Software" von Ulrich Radig beschrieben. * Als Hardware wird das Webmodul von Ulrich Radig (http://www.ulrichradig.de/home/index.php/avr/avr-webmodule) * verwendet. Die ursprüngliche Software findet sich hier http://www.ulrichradig.de/home/index.php/avr/eth_m32_ex * * \image html Webmodule.jpg "Ulrich Radigs Webmodul mit SD-Karte" * * Des weiteren wurde das FAT16-Filesystem von Roland Riegel verwendet. * (http://www.roland-riegel.de/sd-reader/index.html
in „Bausatz Add-on für AVR-NET-IO“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
display.asm
bei diesem Projekt. ;* Control uC für den DDS Generator nach Jesper Hansen ;* http://www.myplace.nu/avr/minidds/index.htm ;* Bedienelement ist nur ein Drehgeber mit Schalter. ;* Der Schalter schaltet zwischen Kommando- und Ausführungsmodus um ;* ;* Um die Umschaltstörungen der DDS Signale kurz zu halten
in „LCD Routine Funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd-routines.h
Ansteuerung eines HD44780 kompatiblen LCD im 4-Bit-Interfacemodus // http://www.mikrocontroller.net/articles/AVR-GCC-Tutorial/LCD-Ansteuerung // #ifndef LCD_ROUTINES_H #define LCD_ROUTINES_H //////////////////////////////////////////////////////////////////////////////// // Hier die verwendete Taktfrequenz in
in „error: stray ‘\327′ in program“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd-routines.h
Ansteuerung eines HD44780 kompatiblen LCD im 4-Bit-Interfacemodus // http://www.mikrocontroller.net/articles/AVR-GCC-Tutorial/LCD-Ansteuerung // #ifndef LCD_ROUTINES_H #define LCD_ROUTINES_H //////////////////////////////////////////////////////////////////////////////// // Hier die verwendete Taktfrequenz in
in „error: stray ‘\327′ in program“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Datenblatt Ausschnitt AVR128DB Device Revision ID Register
AVR128DB28/32/48/64 Peripherals and Architecture 10.3.2.1 Device Revision ID Register Name: REVID Offset: 0x01 Reset: [revision ID] Property: This register is read only and give the device revision ID.
in „AVR128DA64 TCA1 funktioniert nicht mit alternativen Output?“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
scheduler.c
interrupts make it even worse. */ struct taskpoint schedlist[SCHED_TASKS] PROGMEM = { {rs232_task,8}, {t_2,64}, //Might use a lot of floating point libs calls ad_start {t_3,32}, //Might use a lot of local variables menu_start {t_4,32}, //lcd_start {t_5,32}, //user_start {t_6,32} //oputput_start }; //List of
in „Kooperatives Multitasking“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
DN_045.pdf
This Shift Register technique can also be used to set up addresses to large amounts of Static RAM. 32K and 64K Static RAM chips are relatively cheap these days and unlike DRAM can easily be memory backed up. The important thing to realise though is that only devices which are synchronous can be controlled this way. For example if the 32 Static RAM chip were to be left enabled and in Write mode while the address was being clocked in you would corrupt 16 other locations on your way to setting up the right address. It is also important
in „AVR und I/O-Expander“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
prog.s
= 0x3f __SP_H__ = 0x3e __SP_L__ = 0x3d __CCP__ = 0x34 __tmp_reg__ = 0 __zero_reg__ = 1 ; GNU C (WinAVR 20100110) version 4.3.3 (avr) ; compiled by GNU C version 3.4.5 (mingw-vista special r3), GMP version 4.2.3, MPFR version 2.4.1. ; GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize
in „Problem beim Auslagern von Funktionen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
PWM_Dimmer_entprellt.txt
================================================================= */ #include <stdlib.h> #include <avr/io.h> #include <avr/interrupt.h> // Für Interruptbehandlung nötig // CPU Frequenz #define F_CPU 9600000UL // Setze Bit #define SetBit(ADDR,BIT) ((ADDR) |= (1<<(BIT))) // Lösche Bit #define ClrBit(ADDR
in „Eintastendimmer und Taster Entprellung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
nano_os.h
) #define CLK1024 _BV(CS02) |_BV(CS00) #elif defined (__AVR_ATmega88__) #define RAMSTART 0x60 #define HEAPSTART 0x02FF #define STACK_SIZE 54 #define TIMER_REGISTER TCCR0B #define TIMER_ENABLE TIMSK0 #define TIMER_VECTOR TIMER0_OVF_vect #define CLK1 _BV(CS00) #define CLK1024 _BV(CS02) |_BV(CS00) #elif defined (__AVR_ATmega32__) #define RAMSTART 0x60 #define HEAPSTART 0x085f #define STACK_SIZE 54 // immer Timer0 ! #define TIMER_REGISTER TCCR0 #define TIMER_ENABLE TIMSK #define TIMER_VECTOR TIMER0_OVF_vect #define
-
Datei
Firmware_v1.2.c
=0) Temp = Temp + 8; if((PINC & (1<<1))==0) Temp = Temp + 16; if((PINC & (1<<0))==0) Temp = Temp + 32; if((PINB & (1<<5))==0) Temp = Temp + 64; if((PINB & (1<<4))==0) Temp = Temp + 128; if((PINB & (1<<3))==0) Temp = Temp + 256; //DIP-Switches einlesen *ENDE* if (Temp != 0) { DmxAddress= Temp; if (!(UCSR0B
in „DMX steuerbaren RGB LED PAR oder Pinnspot selber bauen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
disassebled_minimal_change_crash.asm
firmware.elf: file format elf32-avr Disassembly of section .text: 00000200 <__vectors>: 200: 0c 94 67 01 jmp 0x2ce ; 0x2ce <__ctors_end> 204: 0c 94 8f 01 jmp 0x31e ; 0x31e <__bad_interrupt> 208: 0c 94 8f 01 jmp 0x31e ; 0x31e <__bad_interrupt
in „Bizarrer Firmware crash - ATmega4808. Wie Debuggen?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
out.lst
mv_gcctest9.elf: file format elf32-avr Sections: Idx Name Size VMA LMA File off Algn 0 .text 000005ce 00000000 00000000 00000094 2**0 CONTENTS, ALLOC, LOAD, READONLY, CODE 1 .data 00000046 00800060 000005ce 00000662 2**0 CONTENTS, ALLOC
in „Multiplikation ist zu schnell...“ · Mikrocontroller und Digitale Elektronik ·