ATmega48 Atmel Corporation, ATmega48 Datasheet - Page 52

no-image

ATmega48

Manufacturer Part Number
ATmega48
Description
Manufacturer
Atmel Corporation
Datasheets

Specifications of ATmega48

Flash (kbytes)
4 Kbytes
Pin Count
32
Max. Operating Frequency
20 MHz
Cpu
8-bit AVR
# Of Touch Channels
12
Hardware Qtouch Acquisition
No
Max I/o Pins
23
Ext Interrupts
24
Usb Speed
No
Usb Interface
No
Spi
2
Twi (i2c)
1
Uart
1
Graphic Lcd
No
Video Decoder
No
Camera Interface
No
Adc Channels
8
Adc Resolution (bits)
10
Adc Speed (ksps)
15
Analog Comparators
1
Resistive Touch Screen
No
Temp. Sensor
No
Crypto Engine
No
Sram (kbytes)
0.5
Eeprom (bytes)
256
Self Program Memory
NO
Dram Memory
No
Nand Interface
No
Picopower
No
Temp. Range (deg C)
-40 to 85
I/o Supply Class
1.8 to 5.5
Operating Voltage (vcc)
1.8 to 5.5
Fpu
No
Mpu / Mmu
no / no
Timers
3
Output Compare Channels
6
Input Capture Channels
1
Pwm Channels
6
32khz Rtc
Yes
Calibrated Rc Oscillator
Yes

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
ATmega48-10AU
Manufacturer:
FEVA
Quantity:
30 000
Part Number:
ATmega48-15AT
Manufacturer:
Atmel
Quantity:
10 000
Part Number:
ATmega48-15AT1
Manufacturer:
Atmel
Quantity:
10 000
Part Number:
ATmega48-15AT1
Manufacturer:
ATMEL/爱特梅尔
Quantity:
20 000
Part Number:
ATmega48-15AZ
Manufacturer:
ATMEL
Quantity:
3 500
Part Number:
ATmega48-15AZ
Manufacturer:
Atmel
Quantity:
10 000
Part Number:
ATmega48-15AZ
Manufacturer:
ATMEL/爱特梅尔
Quantity:
20 000
Part Number:
ATmega48-15AZV
Manufacturer:
MICROCHIP
Quantity:
3 100
Part Number:
ATmega48-15AZV
Manufacturer:
Atmel
Quantity:
10 000
Part Number:
ATmega48-20AI
Manufacturer:
Atmel
Quantity:
10 000
Part Number:
ATmega48-20AU
Manufacturer:
ATMEL
Quantity:
6 460
Part Number:
ATmega48-20AU
Manufacturer:
Atmel
Quantity:
1 300
Part Number:
ATmega48-20AU
Manufacturer:
ATMEL/爱特梅尔
Quantity:
20 000
Company:
Part Number:
ATmega48-20AU
Quantity:
2 500
2545T–AVR–05/11
The following code example shows one assembly and one C function for changing the time-out
value of the watchdog timer.
Note:
Note: The watchdog timer should be reset before any change of the WDP bits, since a change in
the WDP bits can result in a time-out when switching to a shorter time-out period.
Assembly code example
C code example
WDT_Prescaler_Change:
void WDT_Prescaler_Change(void)
{
}
; Turn off global interrupt
cli
; Reset Watchdog Timer
wdr
; Start timed sequence
lds r16, WDTCSR
ori
sts WDTCSR, r16
; --
; Set new prescaler(time-out) value = 64K cycles (~0.5 s)
ldi
sts WDTCSR, r16
; --
; Turn on global interrupt
sei
ret
__disable_interrupt();
__watchdog_reset();
/* Start timed
WDTCSR |= (1<<WDCE) | (1<<WDE);
/* Set new prescaler(time-out) value = 64K cycles (~0.5 s) */
WDTCSR
__enable_interrupt();
1.
See ”About code examples” on page 8.
r16, (1<<WDCE) | (1<<WDE)
Got four cycles to set the new values from here -
r16, (1<<WDE) | (1<<WDP2) | (1<<WDP0)
Finished setting new values, used 2 cycles -
= (1<<WDE) | (1<<WDP2) | (1<<WDP0);
(1)
(1)
equence */
ATmega48/88/168
52

Related parts for ATmega48