David Johnson-Davies

Results 258 comments of David Johnson-Davies

Now included in uLisp Release 4.4.

I don't think I'll make them part of the standard versions of uLisp. One reason is that they are ESP-specific, and I try to make everything platform independent. However, with...

Hi, I think I've figured it out. You are using the 16-bit Timer/Counter0 in **Normal mode**, since you have WGM 3:0 set to 0000. To quote the datasheet: > In...

You're welcome. PS I like your **digitalWrite** etc macros - can I include them in the article?

Sorry, same behaviour with 2.0.0-dev version. ie direct PORTB toggling only works on ATtiny167 if I do this first: TCCR1D = TCCR1D & ~(0b00110011);

Running: ``` void setup() { Serial.begin(9600); delay(5000); Serial.println(TCCR1D); } void loop () { } ``` prints 17 (0b00010001).

By the way, I get these warnings when I upload the program (with USBtinyISP - FAST): ````text avrdude warning: ATtiny841's eeprom writepage misses a necessary address bit a8 [/Users/david/Documents/Arduino/hardware/ATTinyCore-2.0.0-dev/avr/avrdude.conf:1416] avrdude...

> have you independently updated avrdude by any chance No, I just downloaded a .ZIP of 2.0.0-dev and put it into my Arduino/hardware folder. Unless it's picking up avrdude from...