-
PDF
print.pdf
2 2 X3-3 R GND GND GND GND RS232 Anschluss 5 6 IC2 + 1C F V C1 1 C1+ C 1 D Conroller AT90S8515 / ATMega161 / ATMega162 IC2P V+ 2 + N N 100nF 3 C1- D 5G V- 6 + N ISP Anschluss 1 4 C2+ u 3 G JP1 C2 1 C X1 GND 5 C2- 5 VTG 2 1 MISO 100nF 1 + RST 5 4 MOSI TXD 11 T1IN T1OUT 14 _TXD 2 6 GND 6 3 SCK N 10 T2IN
in „Labor Netzteil“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Eisenbahn_Tiny45.c
LED //* für den Einsatz auf Modelleisenbahnen als Lichtsignal für //* Flugsicherungs - Lichter //* ATmega8 @ 8 MHz //* //* //***************************************************************************** #define F_CPU 8000000L #include <inttypes.h> #include <avr/io.h> #include <util/delay.h> #include <avr
in „ATtiny45 10bit-PWM“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
config.h
define SJA1000_MEMORY_MAPPED 1 // memory-mapped interface #define SJA1000_BASE_ADDR 0x8000 // for ATMega162 /* // port-interface #define SJA1000_WR D,6 #define SJA1000_RD D,7 #define SJA1000_ALE E,1 #define SJA1000_CS C,0 #define SJA1000_DATA A */ #endif // CONFIG_H
in „CAN Kommuikation ATmega328P“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
AVR910JS_2313_v3_3.asm
unused yet ;AT90S2333 .db 0x34,0 ;From 0x35-0x37 unused yet ;AT90S8515 .db 0x38,0 ;0x39 unused yet ;ATmega8515 .db 0x3A,'P' ;ATmega8515 BOOT .db 0x3B,'P' ;From 0x3c-0x40 unused yet ;ATmega103 .db 0x41,'P' ;ATmega603 .db 0x42,'P' ;ATmega128 .db 0x43,'P' ;ATmega128 BOOT .db 0x44,'P' ;ATmega64 .db 0x45,'P'
in „AVR - suche Datei avr910.asm von Atmel“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
freq_zaehler_attiny.pdf
with this feature includes: Atmel ATtiny10, ATtiny13, ATtiny20, ATtiny26, ATtiny28, ATtiny2313, ATmega48/88/168, ATmega8, ATmega16, ATmega32, ATmega8515/8535, ATmega162, ATmega164/324/644/ 1284, and ATmega165/325/3250/645/6450. 2 AVR205 8365A-AVR-01/11 AVR205 Figure 2-2. Atmel ATtiny13A pinout. 3 Measurement
in „Frequenzzähler mit ATMega32“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sleep.h
devices. */ /* Also define some internal masks for use in set_sleep_mode() */ #if defined(__AVR_ATmega161__) #define _SLEEP_TYPE 5 #elif defined(__AVR_ATmega162__) || defined(__AVR_ATmega8515__) #define _SLEEP_TYPE 4 #elif defined(SM) && !defined(SM0) && !defined(SM1) && !defined(SM2) #define _SLEEP_TYPE
in „Power Down Mode über Taster“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
KlimaSensorKomm.c
Taktsignal. Für weitere Infos siehe "12.2 - Ports as General Digital I/O" in der Beschreibung des ATMega32 #define SHT75_DATA_1 DDRC &= ~(1 << SHT75_DATA) //schreibt eine "1" auf den Bus (setzt den Pin hochohmig). Ein externer Pullup zieht den Bus auf High #define SHT75_DATA_0 DDRC |= (1 << SHT75_DATA
in „SHT75 - CRC Check: Ich finde den Fehler nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
soft-pwm_56leds.c
// Software-PWM by PoWl - 23.10.08 // webmaster@the-powl.de // ATmega8 @ 8Mhz #define F_CPU 16000000UL #include <avr/io.h> #include <avr/interrupt.h> #include <util/delay.h> #include <stdbool.h> // Sinustabelle f?r Demo const uint8_t sinetable[] = { 128, 131, 134, 137, 140, 143, 146, 149, 152, 155, 158, 162, 165, 167, 170, 173, 176, 179, 182, 185, 188, 190, 193, 196, 198, 201, 203, 206, 208, 211, 213, 215, 218, 220, 222, 224, 226, 228, 230, 232, 234, 235, 237, 238, 240, 241, 243, 244, 245, 246, 248, 249
in „8-Bit Software PWM für mehr als 8 Kanäle“ · Projekte & Code ·
-
Datei
soft-pwm_56leds.c
// Software-PWM by PoWl - 23.10.08 // webmaster@the-powl.de // ATmega8 @ 8Mhz #define F_CPU 16000000UL #include <avr/io.h> #include <avr/interrupt.h> #include <util/delay.h> #include <stdbool.h> // Sinustabelle f?r Demo const uint8_t sinetable[] = { 128, 131, 134, 137, 140, 143, 146, 149, 152, 155, 158, 162, 165, 167, 170, 173, 176, 179, 182, 185, 188, 190, 193, 196, 198, 201, 203, 206, 208, 211, 213, 215, 218, 220, 222, 224, 226, 228, 230, 232, 234, 235, 237, 238, 240, 241, 243, 244, 245, 246, 248, 249
in „56x PWM + Serielle Kommunikation mit PC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Fading_LED.txt
LED //* für den Einsatz auf Modelleisenbahnen als Lichtsignal für //* Flugsicherungs - Lichter //* ATmega8 @ 8 MHz //* //* //***************************************************************************** #define F_CPU 8000000L #include <inttypes.h> #include <avr/io.h> #include <util/delay.h> #include <avr
in „PWM bei Mega8 und 2313“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Teileliste-04-18-2233.pdf
Mikrocontroller ATTiny AVR RISC, 1 KB, 4 Mhz SO-8 ATTINY 12L SO8 2 0,99 EUR 0,35 EUR 174 Mikrocontroller ATMega AVR RISC, 8 KB, 8 Mhz TQFP-32 ATMEGA 8L8 TQ 3 1,55 EUR 0,54 EUR 175 Mikrocontroller ATMega AVR RISC, 8 KB, 16 Mhz TQFP-32 ATMEGA 8-16 TQ 3 1,75 EUR 0,61 EUR 176 Mikrocontroller ATTiny AVR RISC, 1 KB, 8 Mhz SO-8 ATTINY 12 SO8 2 0,85 EUR 0,30 EUR 177 Mikrocontroller ATMega AVR RISC, 64 KB, 16 Mhz TQFP-64 ATMEGA 64-16 TQ 1 4,99 EUR 1,75 EUR 178 Mikrocontroller ATMega AVR RISC, 32 KB, 16 Mhz TQFP-44 ATMEGA 32-16 TQ 3 3,30 EUR 1,16 EUR 179 Mikrocontroller ATMega AVR RISC
in „Bauelemente abzugeben“ · Markt ·
-
PDF
Teileliste-04-19-1539.pdf
Mikrocontroller ATTiny AVR RISC, 1 KB, 4 Mhz SO-8 ATTINY 12L SO8 0 0,99 EUR 0,35 EUR 174 Mikrocontroller ATMega AVR RISC, 8 KB, 8 Mhz TQFP-32 ATMEGA 8L8 TQ 3 1,55 EUR 0,54 EUR 175 Mikrocontroller ATMega AVR RISC, 8 KB, 16 Mhz TQFP-32 ATMEGA 8-16 TQ 3 1,75 EUR 0,61 EUR 176 Mikrocontroller ATTiny AVR RISC, 1 KB, 8 Mhz SO-8 ATTINY 12 SO8 0 0,85 EUR 0,30 EUR 177 Mikrocontroller ATMega AVR RISC, 64 KB, 16 Mhz TQFP-64 ATMEGA 64-16 TQ 1 4,99 EUR 1,75 EUR 178 Mikrocontroller ATMega AVR RISC, 32 KB, 16 Mhz TQFP-44 ATMEGA 32-16 TQ 3 3,30 EUR 1,16 EUR 179 Mikrocontroller ATMega AVR RISC
in „Bauelemente abzugeben“ · Markt ·
-
PDF
Teileliste-04-19-1957.pdf
Mikrocontroller ATTiny AVR RISC, 1 KB, 4 Mhz SO-8 ATTINY 12L SO8 0 0,99 EUR 0,35 EUR 174 Mikrocontroller ATMega AVR RISC, 8 KB, 8 Mhz TQFP-32 ATMEGA 8L8 TQ 3 1,55 EUR 0,54 EUR 175 Mikrocontroller ATMega AVR RISC, 8 KB, 16 Mhz TQFP-32 ATMEGA 8-16 TQ 3 1,75 EUR 0,61 EUR 176 Mikrocontroller ATTiny AVR RISC, 1 KB, 8 Mhz SO-8 ATTINY 12 SO8 0 0,85 EUR 0,30 EUR 177 Mikrocontroller ATMega AVR RISC, 64 KB, 16 Mhz TQFP-64 ATMEGA 64-16 TQ 1 4,99 EUR 1,75 EUR 178 Mikrocontroller ATMega AVR RISC, 32 KB, 16 Mhz TQFP-44 ATMEGA 32-16 TQ 3 3,30 EUR 1,16 EUR 179 Mikrocontroller ATMega AVR RISC
in „Bauelemente abzugeben“ · Markt ·
-
PDF
Teileliste-04-20-1111.pdf
Mikrocontroller ATTiny AVR RISC, 1 KB, 4 Mhz SO-8 ATTINY 12L SO8 0 0,99 EUR 0,35 EUR 174 Mikrocontroller ATMega AVR RISC, 8 KB, 8 Mhz TQFP-32 ATMEGA 8L8 TQ 3 1,55 EUR 0,54 EUR 175 Mikrocontroller ATMega AVR RISC, 8 KB, 16 Mhz TQFP-32 ATMEGA 8-16 TQ 3 1,75 EUR 0,61 EUR 176 Mikrocontroller ATTiny AVR RISC, 1 KB, 8 Mhz SO-8 ATTINY 12 SO8 0 0,85 EUR 0,30 EUR 177 Mikrocontroller ATMega AVR RISC, 64 KB, 16 Mhz TQFP-64 ATMEGA 64-16 TQ 1 4,99 EUR 1,75 EUR 178 Mikrocontroller ATMega AVR RISC, 32 KB, 16 Mhz TQFP-44 ATMEGA 32-16 TQ 3 3,30 EUR 1,16 EUR 179 Mikrocontroller ATMega AVR RISC
in „Bauelemente abzugeben“ · Markt ·
-
Datei
dual_fading.c
//* dual LED fading //* uses exponential PWM settings to achive visual linear brightness //* //* ATmega32 @ 8 MHz //* //* //***************************************************************************** #define F_CPU 8000000L #define true 1 #define false 0 #define STK500 false #include <inttypes.h> #include
in „PWM Led fading problem mit Soft-PWM Artikel“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
AVR910JS_2313_v3_3_STK500.asm
;AT90S2333 ; .db 0x34,0 ;From 0x35-0x37 unused yet ; ;AT90S8515 ; .db 0x38,0 ;0x39 unused yet ; ;ATmega8515 ; .db 0x3A,'P' ; ;ATmega8515 BOOT ; .db 0x3B,'P' ;From 0x3c-0x40 unused yet ; ;ATmega103 ; .db 0x41,'P' ; ;ATmega603 ; .db 0x42,'P' ; ;ATmega128 ; .db 0x43,'P' ; ;ATmega128 BOOT ; .db 0x44,'P'
in „STK500 spinnt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb_rawhid.h
define MAX_ENDPOINT 4 #define LSB(n) (n & 255) #define MSB(n) ((n >> 8) & 255) #if defined(__AVR_AT90USB162__) #define HW_CONFIG() #define PLL_CONFIG() (PLLCSR = ((1<<PLLE)|(1<<PLLP0))) #define USB_CONFIG() (USBCON = (1<<USBE)) #define USB_FREEZE() (USBCON = ((1<<USBE)|(1<<FRZCLK))) #elif defined(__AVR_ATmega32U4
in „USB Stack für AT90USB162“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb_debug_only.h
define MAX_ENDPOINT 4 #define LSB(n) (n & 255) #define MSB(n) ((n >> 8) & 255) #if defined(__AVR_AT90USB162__) #define HW_CONFIG() #define PLL_CONFIG() (PLLCSR = ((1<<PLLE)|(1<<PLLP0))) #define USB_CONFIG() (USBCON = (1<<USBE)) #define USB_FREEZE() (USBCON = ((1<<USBE)|(1<<FRZCLK))) #elif defined(__AVR_ATmega32U4
in „Text und Zahlen Ausgabe über HID (USB Teensy 2++)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
AVRrescue.c
ATtiny87 {0x1E, 0x93, 0x88, 0x62, 0xD9, 0xFF}, // AT90PWM81 {0x1E, 0x94, 0x01, 0xEA, 00, 00}, // ATmega161 {0x1E, 0x94, 0x02, 0xE2, 0xF9, 00}, // ATmega163 {0x1E, 0x94, 0x03, 0xC1, 0x99, 00}, // ATmega16 {0x1E, 0x94, 0x04, 0x41, 0x99, 0xFE}, // ATmega162 {0x1E, 0x94, 0x05, 0x62, 0x99, 0xFF}, // ATmega169 {0x1E, 0x94, 0x06, 0x62, 0xDF, 0xF9}, // ATmega168 {0x1E, 0x94, 0x07, 0x62, 0x99, 0xFF}, // ATmega165 {0x1E, 0x94, 0x0a, 0x42, 0x99, 0xFF}, // ATmega164P {0x1E, 0x94, 0x0B, 0x62, 0xDF, 0xF9}, // ATmega168P {0x1E, 0x94, 0x0C, 0xDF, 00, 00}, // ATmega16HVA
in „AVR-Rescue: standalone Parallel HV-Programmer“ · Projekte & Code ·
-
PDF
AVR4100.pdf
releases. Table 7-1. Oscillator module overview. Device Family Device Oscillator module MegaAVR ATmega128 X32K_2v7 MegaAVR ATmega1280 X32K_1v8 MegaAVR ATmega1281 X32K_1v8 MegaAVR ATmega1284P X32K_1v8_ULP MegaAVR ATmega128A X32K_2v7 MegaAVR ATmega16 X32K_2v7 MegaAVR ATmega162 X32K_1v8 MegaAVR ATmega164A
in „Passende Kondensatoren für Uhrenquarz gesucht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test2.c
/* Eine 8-kanalige PWM mit Linearisierung ATmega64 @ 16 MHz */ // Defines an den Controller und die Anwendung anpassen #define F_CPU 16000000L // Systemtakt in Hz #define F_PWM 100 // PWM-Frequenz in Hz #define PWM_STEPS 1024L // PWM-Schritte pro
in „Moodlight Sourcecode hilfe“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Hauptplatine_Schaltplan.pdf
12 13 DB6 A 15 PD7(AIN1/PCINT23) 13 14 DB7 K 16 GND S4 U D I C8 PB0(ICP1/CLKO/PCINT0) 14 MINIMEXLE_162A O G 100nF PB1(OC1A/PCINT1) 15 3 1 22 AGND PB2(SS/OC1B/PCINT2) 16 R3 4 2 3 PB3(MOSI/OC2A/PCINT3) 17 LED1 4,7k 8 GND PB4(MISO/PCINT4) 18 S3 PB5(SCK/PCINT5) 19 R 1 2 R4 3 1 GND ATMEGA48/88/168-PU R 6
in „Display DEM16216 - Initialisierung falsch? - Schwarzer Balken“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/* Beispielprogramm 'reziproker Frequenzzaehler' mit GPS-Signal stabilisiert fuer ATmega162 und IAR-Kickstart: Berechnung mit 64-bit double! Funktionsbereich mit Vorteiler 0,004Hz - >50MHz bei 16MHz Prozessortakt Neben der üblichen Frequenzmessung an ICP1 wird zusätzlich über ICP3 die
in „reziproker Frequenzzähler, GPS-stabilisiert, ATmega162“ · Projekte & Code ·
-
Datei
Ultraschall.c
// ATMega8, 16 MHz // 04.10.2011 // Test Ultraschall / Capture // // 12.10.2011 Prescale 64 // Ping: PB0 / Capture // FuncPing-------------|Main // senden |delay 50 msec??|empfangen // _|-------|____________
-
PDF
AVRISPmkII_UG.pdf
prompt the user to upgrade AVRISP mkII The following devices are supported: Tiny Mega Other ATtiny12 ATmega48 AT86RF401 ATtiny13 ATmega8 AT89S51 ATtiny15 ATmega88 AT89S52 ATtiny22 ATmega8515 AT90PWM2 ATiny2313 ATmega8535 AT90PWM3 ATtiny24 ATmega16 AT90CAN32 ATtiny26 ATmega162 AT90CAN128 ATtiny45 ATmega165 ATtiny861 ATmega168 ATmega169 ATmega32 ATmega325 ATmega3250 ATmega329 ATmega3290 ATmega64 ATmega640 ATmega644 ATmega645 ATmega6450 ATmega649 ATmega6490 ATmega128 ATmega1280 ATmega1281 ATmega2560 ATmega2561 The AVRISP
in „AVRISP mkII - 10-polig?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
AVRISPmkII_UG.pdf
prompt the user to upgrade AVRISP mkII The following devices are supported: Tiny Mega Other ATtiny12 ATmega48 AT86RF401 ATtiny13 ATmega8 AT89S51 ATtiny15 ATmega88 AT89S52 ATtiny22 ATmega8515 AT90PWM2 ATiny2313 ATmega8535 AT90PWM3 ATtiny24 ATmega16 AT90CAN32 ATtiny26 ATmega162 AT90CAN128 ATtiny45 ATmega165 ATtiny861 ATmega168 ATmega169 ATmega32 ATmega325 ATmega3250 ATmega329 ATmega3290 ATmega64 ATmega640 ATmega644 ATmega645 ATmega6450 ATmega649 ATmega6490 ATmega128 ATmega1280 ATmega1281 ATmega2560 ATmega2561 The AVRISP
in „ISP Leiterbahnen an ATMega328 funktionieren nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
880eed3fe10373c0a5d4ca8d0892cc67.txt
CONFIG_EXPERIMENTAL=y # CONFIG_EXPERT is not set ARCH=ARCH_AVR ARCH_AVR=y # ARCH_HOST is not set # atmega8 is not set # atmega88 is not set # atmega128 is not set # atmega16 is not set # atmega162 is not set # atmega168 is not set # atmega168p is not set # atmega169 is not set MCU=atmega32 atmega32=y # atmega328p is not set # atmega64 is not set # atmega644 is not set # atmega644p is not set # atmega1284p is not set FREQ=16000000 # Arduino_Duemilanove is not set # Fimser is not set # Jackalope is not set
in „Ethersex will nicht so richtig“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
FFT232b.asm
pop AL reti ;----------------------------------------------------------; ; Initialize peripherals (ATmega8 @ 18,432MHz) reset: clr _0 ;Zero reg. ldiw Z, RAMTOP ;Clear all variables ldiw X, RAMEND-RAMTOP+1 ; st Z+, _0 ; sbiw XL, 1 ; brne PC-2 ;/ sbiw ZL, 1 ;SP ú » outw SP, Z ;/ outi PORTB, 0b00101000 ;Port
in „Schnelle FFT in Assembler“ · Digitale Signalverarbeitung / DSP / Machine Learning ·
-
PDF
AVR053.pdf
Oscillator version Device RC oscillator frequency [MHz] CKDIV PRSCK 1.1 ATtiny12 1.2 1.2 ATtiny15 1.6 2.0 ATmega163 1.0 2.0 ATmega323 1.0 3.0 ATmega8 1.0, 2.0, 4.0, and 8.0 3.0 ATmega16 1.0, 2.0, 4.0, and 8.0 3.0 ATmega32 1.0, 2.0, 4.0, and 8.0 (1) 3.1 ATmega64 1.0, 2.0, 4.0, and 8.0 XDIV (1) 3.1 ATmega128 1.0, 2.0, 4.0, and 8.0 XDIV 3.0 ATmega8515 1.0, 2.0, 4.0, and 8.0 3.0 ATmega8535 1.0, 2.0, 4.0, and 8.0 4.0 ATmega162 8.0 X X 4.0 ATmega169 8.0 X X 4.1 ATtiny13 4.8 and 9.6 X X 4.2 ATtiny2313 4.0 and 8.0 X X 5.0 ATmega48 8.0 X X Note: 1
in „OSCCAL für 8MHz ?!? be ATTiny26“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
AVR053.PDF
Oscillator version Device RC oscillator frequency [MHz] CKDIV PRSCK 1.1 ATtiny12 1.2 1.2 ATtiny15 1.6 2.0 ATmega163 1.0 2.0 ATmega323 1.0 3.0 ATmega8 1.0, 2.0, 4.0, and 8.0 3.0 ATmega16 1.0, 2.0, 4.0, and 8.0 3.0 ATmega32 1.0, 2.0, 4.0, and 8.0 (1) 3.1 ATmega64 1.0, 2.0, 4.0, and 8.0 XDIV (1) 3.1 ATmega128 1.0, 2.0, 4.0, and 8.0 XDIV 3.0 ATmega8515 1.0, 2.0, 4.0, and 8.0 3.0 ATmega8535 1.0, 2.0, 4.0, and 8.0 4.0 ATmega162 8.0 X X 4.0 ATmega169 8.0 X X 4.1 ATtiny13 4.8 and 9.6 X X 4.2 ATtiny2313 4.0 and 8.0 X X 5.0 ATmega48 8.0 X X Note: 1
in „Osccal für EEPROM bei mega8535 mit Quarz“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
dude511.txt
ATtiny4313 avrdude: Recv: _ [5f] Device code: 0x5f = (unknown) avrdude: Recv: ` [60] Device code: 0x60 = ATMEGA161 avrdude: Recv: a [61] Device code: 0x61 = (unknown) avrdude: Recv: b [62] Device code: 0x62 = (unknown) avrdude: Recv: c [63] Device code: 0x63 = ATMEGA162 avrdude: Recv: d [64] Device code: 0x64
in „avrdude - Probleme unter Mac OS X 10.7 (Lion)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
dude511_mit_arduino_conf.txt
ATtiny2313 avrdude: Recv: _ [5f] Device code: 0x5f = (unknown) avrdude: Recv: ` [60] Device code: 0x60 = ATMEGA161 avrdude: Recv: a [61] Device code: 0x61 = (unknown) avrdude: Recv: b [62] Device code: 0x62 = (unknown) avrdude: Recv: c [63] Device code: 0x63 = ATMEGA162 avrdude: Recv: d [64] Device code: 0x64
in „avrdude - Probleme unter Mac OS X 10.7 (Lion)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsnd.c
Supported AVR mikrocontrollers: * * ATtiny87, ATtiny167 * ATtiny45, ATtiny85 * ATtiny44 ATtiny84 * ATmega8, ATmega16, ATmega32 * ATmega162 * ATmega164, ATmega324, ATmega644, ATmega644P, ATmega1284, ATmega1284P * ATmega88, ATmega88P, ATmega168, ATmega168P, ATmega328P * * $Id: irsnd.c,v 1.85 2015/04/23 12
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
irsnd.c
Supported AVR mikrocontrollers: * * ATtiny87, ATtiny167 * ATtiny45, ATtiny85 * ATtiny44 ATtiny84 * ATmega8, ATmega16, ATmega32 * ATmega162 * ATmega164, ATmega324, ATmega644, ATmega644P, ATmega1284, ATmega1284P * ATmega88, ATmega88P, ATmega168, ATmega168P, ATmega328P * * $Id: irsnd.c,v 1.86 2015/05/07 06
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
Drehencoder.c
decoder //* Main driver source file //* //* Filename: keymatrix.c //* Version: 1.0 //* //* Device: ATmega162 //* Clock: Internal 1.000 MHz RC oscillator //* //************************************************ /* keyboard Interface: * 3 rows x 8 columns: P0.0 - P0.2 * P2 * support multiple keys pressed simultaniously
in „Drehimpulsgeber mit Rasterstellung bei 00/11 auswerten“ · Projekte & Code ·
-
PDF
Boris_Voyager.sch.pdf
1 2 3 4 5 6 C13 4.7u +3V3 + C8 IC2 ATMEGA1284P-AU 27p C9 C10 100n 27p +3V3 5 VCC_2 XTAL2 7 XTAL1 17 VCC_3 Q2 S1 S2 S3 S4 S5 C12 100n 38 9 27 VCC PD0 10 RX 3 1 3 1 3 1 3 1 3 1 6 k AVCC PD1 TX A R 1 C6 PD2 11 4 2 4 2 4 2 4 2 4 2 A 100n 29 AREF
in „Noch ein Taschenrechner auf ATMega Basis“ · Projekte & Code ·
-
Datei
config.xml
Always On" WDTON="0"/> <Setting caption="programmable" WDTON="1"/> </WatchdogTimer> </AVR> <AVR name="m162" caption="ATmega162"> <Fuse name="UNUSED_E7" bit="7" fuseByte="efuse" default="1" desc="unused" mode="expert"/> <Fuse name="UNUSED_E6" bit="6" fuseByte="efuse" default="1" desc="unused" mode="expert
in „Fuseeditor, grafische Benutzeroberfläche für AVRdude“ · Projekte & Code ·
-
Datei
ICP_UART_162_01.c
/*ICP mit ISR-UART für Atmega 162 unter Verwendung von freqcount von Holger Brenner und dem USART Beispiel aus dem Artikel Interrupt */ #include <inttypes.h> #include <avr/interrupt.h> #include <avr/io.h> #include <stdint.h> #include
in „Wie lange dauert ein Prozessschritt?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
162_test_Overflows_UART.c
/*ICP mit ISR-UART für Atmega 162 unter Verwendung von freqcount von Holger Brenner und dem USART Beispiel aus dem Artikel Interrupt */ #include <inttypes.h> #include <avr/interrupt.h> #include <avr/io.h> #include <stdint.h> #include
in „Overflows im Interrupt zählen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
DOGM162_Test.c
/* * DOGM-162 Test mit ATMega164PA * * Created: 08.11.2013 * Author: rriedel */ #include <avr/io.h> #include <avr/interrupt.h> #include <avr/sleep.h> volatile uint8_t timer0_counter = 0; volatile uint8_t display_data
in „DOGM162 an ATMega164PA“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb_serial.h
define MAX_ENDPOINT 4 #define LSB(n) (n & 255) #define MSB(n) ((n >> 8) & 255) #if defined(__AVR_AT90USB162__) #define HW_CONFIG() #define PLL_CONFIG() (PLLCSR = ((1<<PLLE)|(1<<PLLP0))) #define USB_CONFIG() (USBCON = (1<<USBE)) #define USB_FREEZE() (USBCON = ((1<<USBE)|(1<<FRZCLK))) #elif defined(__AVR_ATmega32U4
in „Atmega32U4-Board: USB-Ausgabe in Betrieb nehmen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
AVR-Studio.txt
avrgcc\avr\include" -I"C:\Dokumente und Einstellungen\Root\Desktop\akkuboost2\akkuboost2\.." -mmcu=atmega32 -Wall -gdwarf-2 -std=gnu99 -DF_CPU=8000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -MD -MP -MT akkuboost2.o -MF dep/akkuboost2.o.d -c ../../akkuboost2.c In file included
in „Suche Hilfe beim Compilieren von fertigem C-Code“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Atmega64_mit_4xLS7060_print.pdf
ADc_Din, am ADS=Dout ** 1 ** Frequenzzähler, mit externem Interrupt, Atmega64, 4x LS7060 letzte Änderung 23.6.17 Atmega64 Ads_din Alias Pinb.4 ADc_Dout, am ADS=Din $regfile = "m64def.DAT" Ads_dout Alias Portb.6 ADc_Chip-Select 10MHz externer Oszillator Ads_chipselect Alias
in „Pogramm Ablaufplan für Atmegabasic.“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
I2cBusSniffer.pdf
start of external RAM when they go off the end of 32KB. The basic building block is therefore an ATMEGA161 (I know, I should upgrade to a 162, but I had the 161 laying around already) with a latch and 32KB of SRAM. I happened to have several old cache chips (20ns 32KB SRAM’s) from a 486 system laying
-
Datei
usb_serial.h
define MAX_ENDPOINT 4 #define LSB(n) (n & 255) #define MSB(n) ((n >> 8) & 255) #if defined(__AVR_AT90USB162__) #define HW_CONFIG() #define PLL_CONFIG() (PLLCSR = ((1<<PLLE)|(1<<PLLP0))) #define USB_CONFIG() (USBCON = (1<<USBE)) #define USB_FREEZE() (USBCON = ((1<<USBE)|(1<<FRZCLK))) #elif defined(__AVR_ATmega32U4
in „Problem mit unterschiedlichen Prescalern“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
teile-ttester.txt
SCHOTTKY-DIODE_RAD3-5-A DIODE-3-5A-V markus 1 DC1 5V/+-15V NMA NMA dc-dc-converter 1 DIS1 EA-DOG-M162 EA-DOG-M_LCD EA_DOGM ea 1 G1 AB9V AB9V AB9V battery 1 IC1 ATmega8/88/168 MEGA8-PU DIL28-3 avr-7 1 JP1 ISP ML6 ML6 con-ml 1 JP2 TEST FE05-1 FE05-1 con-lsta 1 JP3 TESTZENER FE04-1 FE04-1 con-lsta 1 JP4
in „Sammelbestellung Transistortester III - schnelle Runde“ · Markt ·
-
Datei
AVR-Studio2.txt
avrgcc\avr\include" -I"C:\Dokumente und Einstellungen\Root\Desktop\test-akkuboost\akku-test\." -mmcu=atmega32 -Wall -gdwarf-2 -std=gnu99 -DF_CPU=8000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -MD -MP -MT akkuboost2.o -MF dep/akkuboost2.o.d -c ../akkuboost2.c In file included
in „Suche Hilfe beim Compilieren von fertigem C-Code“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ATMEGA_128.pdf
none of the functions in the Extended I/O space are in use, so the internal RAM is located as in ATmega103. Also, the extended interrupt vectors are removed. 4 ATmega128(L) 2467AS–08/01 ATmega128(L) The ATmega128 is 100% pin compatible with ATmega103, and can replace the ATmega103 on current Printed Circuit Boards. The application note “Replacing ATmega103 by ATmega128” describes what the user should be aware of replacing the ATmega103 by an ATmega128. ATmega103 Compatibility By programming the M103C fuse, the ATmega128 will be compatible with the
in „ATMEGA128 Board im Neuhold Newsletter 2/2011“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
avr910.asm
ATTiny2313 (device Code 0x23), and ATMega8535 (0x6A)Support. ;* Not Supported from avrprog, avrdude Support possible. ;* Reorganised Table for Page Mode Chips with Pagesize. Adding different Pagesizes ;* Try to fix S89 write, BUG in avrprog
-
Datei
avr910.asm
ATTiny2313 (device Code 0x23), and ATMega8535 (0x6A)Support. ;* Not Supported from avrprog, avrdude Support possible. ;* Reorganised Table for Page Mode Chips with Pagesize. Adding different Pagesizes ;* Try to fix S89 write, BUG in avrprog