You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It takes about 170 seconds to load the flight software onto the board with make install. Can it be done faster? We reduce the CPU clock speed on the satellite as a power saving feature, let's see what kind of impact it has on development speed.
Suggested testing methodology
Delete all files from the board
Use screen to drop into the repl on the board:
screen /dev/tty.usbmodem101
Set the clock speed high
machine.set_clock(125000000) # 125Mhz
From your computer, test read/write speed
# cd to the board mountcd /Volumes/PYSQUARED
# Test board write speed
dd if=/dev/zero of=./test bs=5k count=10 oflag=direct
Set clock speed low
machine.set_clock(62500000) # 62.5Mhz
From your computer, test read/write speed
# cd to the board mountcd /Volumes/PYSQUARED
# Test board write speed
dd if=./test of=/dev/zero bs=5k count=10 oflag=direct
Post the results in the issue
Board mount location may differ. You can find out how to find the volume in the README.md.
The text was updated successfully, but these errors were encountered:
Summary
It takes about 170 seconds to load the flight software onto the board with
make install
. Can it be done faster? We reduce the CPU clock speed on the satellite as a power saving feature, let's see what kind of impact it has on development speed.Suggested testing methodology
Board mount location may differ. You can find out how to find the volume in the
README.md
.The text was updated successfully, but these errors were encountered: