User Tools

Site Tools


oak:tutorials:serialfirmware

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
oak:tutorials:serialfirmware [2016/03/12 22:54]
pfeerick Changes to how to add path - it is an option in the installer
oak:tutorials:serialfirmware [2016/04/08 19:43]
pfeerick [Connecting Your Oak]
Line 30: Line 30:
 ====== Connecting Your Oak ====== ====== Connecting Your Oak ======
  
-To program your Oak over serial, you will want to connect the GND of your USB-Serial Adapter to the Oak's GND, RX to TX, TX to RX, and P2 to GND. You can then power the Oak via the on-board MicroUSB slot, or by providing appropriate power to the VIN or VCC pins.  +To program your Oak over serial, you will want to connect the GND of your USB-Serial Adapter to the Oak's GND, RX to TX, TX to RX, and P2 to GND. You can then power the Oak via the on-board MicroUSB slot, or by providing appropriate power to the VIN or VCC pins. This is probably a good time to also ensure that you [[https://​github.com/​digistump/​OakRestore|reset your Oak to factory defaults]], so that it runs your program when you upload via serial (by resetting the bootloader to running the program loaded in slot 0). If you can't or don't want to do that, you can instead use the esptool command to reset the bootloader so that it will run your newly uploaded program in slot 0.
  
-//Needs pic of an adapter here, and some more detailed explaination of pin connections//​+<​code>​ 
 +esptool --baud 115200 --port YOUR_COM_PORT write_flash -fs 32m 0x1000 blank.bin 0x101000 blank.bin 0x102000 blank.bin 0x202000 blank.bin 
 +</code>
  
 +//Needs pic of an adapter here, and some more detailed explanation of pin connections//​
  
 ====== Programming via the Arduino IDE ====== ====== Programming via the Arduino IDE ======
  
-You will need to change your Upload settings in the Arduino IDE (under the Tools menu) from "​Particle OTA" to "​Serial (Expert Use Only - Requires Python)",​ and make sure that the Port settings is set to the right serial port. +{{ :​oak:​tutorials:​arduino_ide_serial_upload_selection.png?​100|}} 
- +You will need to change your Upload settings in the Arduino IDE (under the Tools menu) from "​Particle OTA" to "​Serial (Expert Use Only - Requires Python)",​ and make sure that the Port settings is set to the right serial port. Click on the image on the right to see a screenshot demonstrating where these options are. As you can see in the image, I am still in Particle OTA programming mode at the time the screenshot was taken, and the Port menu is dimmed out as a result. It will become available for use once you change to the Serial upload mode.
-//​Screenshot?//​+
  
 When you upload your program to your Oak, you should see a message in the compile/​upload log at the bottom of the Arduino IDE displaying the following message. If you scroll that view, you should see the percentage increasing as the program is being transferred to your Oak.  When you upload your program to your Oak, you should see a message in the compile/​upload log at the bottom of the Arduino IDE displaying the following message. If you scroll that view, you should see the percentage increasing as the program is being transferred to your Oak. 
Line 64: Line 66:
  
 ====== Troubleshooting ====== ====== Troubleshooting ======
 +===== Failed to connect to ESP8266 =====
  
 Failing to power, connect the serial TX & RX pins, or ground the P2 pin can result in the following error message. Failing to power, connect the serial TX & RX pins, or ground the P2 pin can result in the following error message.
Line 72: Line 75:
 A fatal error occurred: Failed to connect to ESP8266 A fatal error occurred: Failed to connect to ESP8266
 </​code>​ </​code>​
 +
 +===== Program doesn'​t seem to be running =====
 +
 +If your upload appears to be successful, and your code doesn'​t appear to be running, this is usually due to having not run OakRestore, and the Oak bootloader not knowing to run the program loaded in slot 0. Serial uploads always load to slot 0, but OTA updates load into slots 1 and 2, and the bootloader is probably trying to run programs from those slots, instead of your new serial uploaded program. Follow the [[https://​github.com/​digistump/​OakRestore|steps to reset your Oak to factory defaults]], and all should be good.
oak/tutorials/serialfirmware.txt · Last modified: 2016/04/08 19:43 by pfeerick