ATmega328 Overclock (30MHz)
Hello everyone,
This is more fun oriented project than something useful (or not) since ATmega328 was not designed for clock frequency above 20MHz (see datasheet). So, 30MHz is push it far from the limit. :)
Besides, I have not studied very much to make this, sorry!
In this "experiment", instead of the 16MHz crystal (as in Arduino), an 29.491MHz oscillator were used, connected to a 100nF capacitor to filter DC levels. The signal coming from the capacitor goes to the ATmega's XTAL1 pin. The XTAL2 pin was not connected.
The picture below shows the oscillator signal after the capacitor:
For checking the difference on the speed before and after the overclock, I have used the following code with the Arduino's IDE (UNO/Optiboot bootloader). Very simple, it just put the B register pins High and Low.
PS: To upload the program, the 16MHz crystal was used instead the 30MHz oscillator. I don't know yet why it is necessary, since the oscillator does not work during the upload. Probably, the AVRdude must be configured (using the IDE?), so the bootloader speed can be the same, since the uC is responding faster. Any help here will be appreciated.
void setup() {
DDRB = 0xFF;
}
void loop() {
while(1){
PORTB = 0x00;
PORTB = 0xFF;
}
}
Anyway, take a look at the results for both speeds:
16MHz CRYSTAL:
29.491MHz OSCILLATOR:
The frequency come from 4MHz to almost 6MHz. A very interesting increment. But is the uC working fine?
Probably not! Or it will probably show bad functioning sometime or in some situations. But, since this is more for fun than to manufacture any medical device, why don't we test the serial communication?
Serial Communication
Before we can use the serial communication, it is necessary to change the operation configuration, so the timing can match the new clock frequency: 29.491MHz (not 16MHz anymore).
Since the Arduino's IDE was used for coding and upload, the boards.txt file, in the Hardware folder had to be changed, defining the new clock frequency. In this "experiment", it was created a new board on theboards list, but changing the frequency of the UNO board would be enough (the ATmega328 was used with UNO's bootloader).
Take a look at the line 35.
Before uploading the code, the new board was selected, so the uC can "know" in which frequency it is running. This way, it can be possible to calculate the time correctly for the baud rate. In this case: 9600.
void setup() {
Serial.begin(9600);
}
void loop() {
if (Serial.available()>0){
Serial.write(Serial.read());
}
}
The code is very simple, it just receive a character and repeat it.
It works! The characters are repeated using the Serial Monitor just fine!
How useful the overclock can be?
Probably most for learning and fun, but personally, I think it can improve this project: Arduino Generated VGA Color Signal, published here in GL:
With a higher frequency it will be possible to have more pixels on the generated image.
But this is for the next hacking! :)
Thanks everyone!!!
Fonte:GarageLab
0 comentários:
Postar um comentário