This file contains hidden or 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
-- | |
-- Fiio X3II | |
-- | |
FIIOX3II = {} | |
-- call with nil to get automatic name | |
function FIIOX3II.dump_ipl(file) | |
if file == nil then | |
file = "fiio_x3ii_ipl.bin" | |
end |
This file contains hidden or 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
#/bin/bash | |
TMPDIR="./tmp-check-defines" | |
SEARCH_DIRS="apps/ firmware/ uisimulator/" | |
function usage() | |
{ | |
echo "Usage: $0 <build file> <define 1> [<define 2>...]" | |
echo "If the define name is suffixed with @ or ~, the tool will also print its value" | |
echo "Furthermore, if a regex follows the @, the tool will try to list all defines" |
This file contains hidden or 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
#!/bin/sh | |
cat /dev/icx_nvp/001 > /contents/bti.rgb |
This file contains hidden or 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
constants | |
{ | |
} | |
options | |
{ | |
productVersion = "000.003.023"; | |
componentVersion = "000.003.023"; | |
driveTag = 0x0; | |
flags = 0x0; |
This file contains hidden or 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
-- | |
-- Philips GoGear SA3ARA | |
-- | |
SA3ARA = {} | |
function SA3ARA.lcd_send(is_data, data) | |
STMP.lcdif.send_pio(is_data, {data}) | |
end | |
function SA3ARA.lcd_init_seq_0() |
This file contains hidden or 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
#/bin/bash | |
TMPDIR="./tmp-build-all" | |
function usage() | |
{ | |
echo "Usage: $0 <build file>" | |
echo "Example:" | |
echo "$0 ../www/buildserver/builds" | |
exit 1 |
This file contains hidden or 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
All examples below are for NWZ-E580, but the same applies for other targets: | |
at the root of rockbox resposotory: | |
> mkdir build_nwze580_bl | |
> cd build_nwze580_bl | |
> ../tools/configure | |
# select NWZ-E580 Series | |
# Select (B)ootloader | |
> make | |
> make -C ../rbutil/mknwzboot | |
# NOTE: mknwzboot requires to install libcrypto++-dev |
This file contains hidden or 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
enc -> dec | |
00 -> 00 | |
ff -> ff | |
80 -> 90 (1000 -> 1001) | |
40 -> 30 (0100 -> 0011) | |
e0 -> 10 (1110 -> 0001) | |
20 -> 60 (0010 -> 0110) | |
c0 -> 70 (1100 -> 0111) | |
a0 -> c0 (1010 -> 1100) | |
60 -> 80 (0110 -> 1000) |