Search found 2 matches

by numero_trey
Sat Apr 02, 2016 5:59 am
Forum: ESP8266 boards
Topic: Call for testsuite running results
Replies: 31
Views: 27949

Re: [URGENT] Call for testsuite running results

Ran it on a $9 NodeMCU knockoff and it passes for me. Have run the suite about a dozen times.
by numero_trey
Fri Apr 01, 2016 11:50 pm
Forum: ESP8266 boards
Topic: Faster builds and flashing
Replies: 0
Views: 2628

Faster builds and flashing

I've been compiling and flashing a lot while waiting on filesystem code to hit the repo, so I optimized my commands to save a ton of time. Dropped my build/flash time from 58s to 22s. [code]make clean && make -j2 && make PORT=/dev/ttyUSB0 BAUD=921600 deploy[/code] Adding the -j2 flag to the make com...