Jarrett Billingsley

Results 27 issues of Jarrett Billingsley

In sim_vcd_file.c line 277, there is a "TODO: check that" comment, but there is no message printed about this feature being unimplemented. Could not figure out for my life why...

Spent a few hours trying to figure out what I was doing wrong with my code. #210 hinted at the problem but ultimately: there's no USI support. Granted, this is...

Once again, this code: ``` ldi temp, _BV(DDB4) | _BV(DDB3) out IO(DDRB), temp ldi temp, 0 out IO(OCR1B), temp out IO(OCR1A), temp ldi temp, 255 out IO(OCR1C), temp ; Enable...

I have some ATTiny85 code which sets up TIM1 in PWM mode such that it sets PB4 on overflow and clears it on COMPB: ``` ; Output on PB4 (sound)...

I thought I'd use `AVR_MCU_VCD_SYMBOL` to trace the value of a variable in my program. It didn't do anything. So I dug into it more. In `sim_elf.c`, `avr_load_firmware` calls `avr_iomem_getirq`...

[This line](https://github.com/noct/sublime-cpp11/blob/master/C%2B%2B11.tmLanguage#L761) makes it so the names of functions in function calls match as entities. It seems that the "entity" rule determines what shows up in ST's "Jump to Definition"...

Seems like strtod doesn't support hex floats on Windows? It just returns 0 for those.