python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Where to find information about the exact binary representation of floating point values used by avr-gcc when compiling for 8-bit processors?
I need to find out the exact binary representation for floats and doubles in a C++ project built with Platformio for an Atmega328 using the Arduino framework. I don't have access to the actual hardwar...
KubaFYI
Votes: 0
Answers: 3
AVR-GCC Overwrites Interrupt Vector Table with Main
I have a simple C program written for an ATmega168:
#include "avr/io.h"
#include "avr/interrupt.h"
volatile uint8_t intrs;
int main(void){
TCCR1B |= _BV(CS12) | _BV(CS10); \\ ...
Tony Gweesip
Votes: 0
Answers: 1