This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mikes-MBP-15:mpy-cross mike$ make clean | |
Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. | |
rm -f mpy-cross | |
rm -f mpy-cross.map | |
rm -rf build | |
Mikes-MBP-15:mpy-cross mike$ make | |
Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. | |
mkdir -p build/genhdr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mikes-MBP-15:mpy-cross mike$ make clean | |
Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. | |
rm -f mpy-cross | |
rm -f mpy-cross.map | |
rm -rf build | |
Mikes-MBP-15:mpy-cross mike$ make | |
Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. | |
mkdir -p build/genhdr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mikes-MBP-15:micropython mike$ cd mpy-cross | |
Mikes-MBP-15:mpy-cross mike$ make clean | |
Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. | |
rm -f mpy-cross | |
rm -f mpy-cross.map | |
rm -rf build | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ make clean && make axtls | |
Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. | |
rm -rf build | |
Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. | |
cd ../lib/axtls; cp config/upyconfig config/.config | |
cd ../lib/axtls; make oldconfig -B | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C config/scripts/config conf | |
cp ../../scripts/config/zconf.tab.h_shipped zconf.tab.h | |
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I. -c ../../scripts/config/conf.c -o conf.o | |
cp ../../scripts/config/zconf.tab.c_shipped zconf.tab.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Quad version of the WS2812B RGB SHIELD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdint.h> | |
const char mp_frozen_str_names[] = { | |
".DS_St\0" | |
"_boot\0" | |
"flashbdev\0" | |
"hd44780\0" | |
"i2c_lcd\0" | |
"i2c_lcd_test\0" | |
"inisetup\0" | |
"neopixel\0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
crontab -l | { cat; echo "* * * * * say it is now \$(date '+\%l \%M \%p')"; } | crontab - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Seeeduino Mega Timeout Problem | |
I have a sketch that fails to upload successfully each and every time. | |
Other simple sketches work fine. | |
Setup | |
* Arduino IDE 1.6.5 | |
* Installed Seeeduino boards: https://raw.githubusercontent.com/Seeed-Studio/Seeeduino-Boards/master/package_seeeduino_index.json | |
* Show verbose output during compilation and upload | |
* Mac OS X Yosemite 10.10.2 | |
* Seeeduino Mega connected to iMac via Mini-USB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/Applications/Arduino.app/Contents/Java/hardware/tools/avr/bin/avr-g++ -c -g -Os -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10605 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/Applications/Arduino.app/Contents/Java/hardware/arduino/avr/cores/arduino -I/Applications/Arduino.app/Contents/Java/hardware/arduino/avr/variants/mega /var/folders/69/jl49sp2n22d2c1sm2pb3_v340000gn/T/build7698589463435088303.tmp/sketch_jul11a.cpp -o /var/folders/69/jl49sp2n22d2c1sm2pb3_v340000gn/T/build7698589463435088303.tmp/sketch_jul11a.cpp.o | |
/Applications/Arduino.app/Contents/Java/hardware/tools/avr/bin/avr-gcc -c -g -x assembler-with-cpp -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10605 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR -I/Applications/Arduino.app/Contents/Java/hardware/arduino/avr/cores/arduino -I/Applications/Arduino.app/Contents/Java/hardware/arduino/avr/variants/mega /Applications/Arduino.app/Contents/Java/hardware/arduino/avr/cores/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ====== ESP8266 Demo ====== | |
* Print out analog values | |
* (Updated Dec 14, 2014) | |
* ========================== | |
* | |
* Change SSID and PASS to match your WiFi settings. | |
* The IP address is displayed to soft serial upon successful connection. | |
* | |
* Ray Wang @ Rayshobby LLC | |
* http://rayshobby.net/?p=9734 |