REV 1 boards arrived today. Will be assembling one when the parts arrive. I might have to make another revision after this to add a filter to reduce the jitter on the MAX31855 thermocouple chips. Right now the ripple on the 3.3V line is around 40mV which causes the reading to fluctuate a bit. A low pass pi filter will fix this issue.
Monthly Archives: February 2014
OctoPROBER REV 1 Released on GitHub
Repository contains test code and all the files so far. Board grew .15″ in height to make space for the headers.
OctoPROBER REV1 routing complete
OctoPROBER Real Time Clock working.
I am using the DS1340Z-33 RTC for time keeping on the OctoPROBER. Interfaces with i2c. It has a built in trickle charger which I disabled as the RTC pulls power off the main lithium battery when the device is turned off. Last thing to test are the MAX31855K thermocouple chips….kinda the entire reason I designed this board hehe.
OctoPROBER ADC working!
Finished programming the ADC which is a MCP3021. It is a 10bit i2c compatible ADC with one channel. A limited ADC but perfect for measuring battery voltages.
Operation is very simple. Just request a word from the device using 10011011 as the device ID and it will spit out the analog value. I had some issues with the i2c driver I used though.
The ADC is supposed to return the 10bit value like so 0000XXXXXXXXXX00. I was receiving XXXXXX000000XXXX. The upper and lower bytes where transposed. Fixed by swapping them around.
OctoPROBER REV 0 board works!*
*With hardware fixes
I was having an issue with the FT230X being active while the 3.3V rails being turned off. The FT230X would backfeed voltage down the TXRX lines into the propeller which would power the 3.3V rail to ~2.7V causing the soft power switch circuit to turn on. I fixed this by running the RESET pin of the FT230X to the propeller and pulling it up to the switched 3.3V rail. The propeller can control whether the FT230X is in suspend mode or is active. Pulling RESET low will HI-Z the TXRX pins and allowing the propeller to turn off the soft power circuit completely without voltage backfeed.
Changed the 16×2 char display from running in 4-bit parallel mode to serial com. This saves 2 I/O lines and is much faster then the 4-bit mode.
Since the main way of charging the OctoPROBER is over USB I needed a way to disable the auto reset. Don’t want the device to reset when its taking samples and low battery warning pops up! This is cause when a computer connects to the FT230X it sends a reset signal to the FT230X which is connected to the reset line on the propeller. Disconnected that and routed the FT230X signal to a free I/O line. This way the prop can control whether or not to reset upon connecting to a computer.
Couple more hardware systems to test then REV 1 boards will be ordered!