mcmsat13
Member level 5
Good day to all!
Being more familiar with PIC microcontrollers as what I have started with, now I am checking things up in Arduino I found out that even though Arduino is simpler, but it is also a poser to someone who has not used it.
For example, In PIC, you set the FUSES and other things but I found out that they are somehow preset in Arduino.
My question is:
How can I apply these lines in Arduino?
I use this to set up counters in CCS C after calling:
Thanks for your help in advance.
Being more familiar with PIC microcontrollers as what I have started with, now I am checking things up in Arduino I found out that even though Arduino is simpler, but it is also a poser to someone who has not used it.
For example, In PIC, you set the FUSES and other things but I found out that they are somehow preset in Arduino.
My question is:
How can I apply these lines in Arduino?
Code:
{
setup_counters(RTCC_INTERNAL, RTCC_DIV_4);
enable_interrupts(INT_RTCC);
enable_interrupts(global);
}
Code:
#INT_RTCC
void clock_isr()
Thanks for your help in advance.