Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 735 → Rev 734

/C-OSD/trunk/README.TXT
33,7 → 33,7
 
Instructions:
Connect the "To FC" port from EPi-OSD to the Debug port of the NaviCtrl.
You will need NaviCtrl 0.18c soft to fully enjoy the software.
You will need NaviCtrl 0.15c soft to fully enjoy the software.
 
S1 enters a menu where you can cycle through using S2 and toggle/accept choice with S1
 
/C-OSD/trunk/default/dist.bat
File deleted
/C-OSD/trunk/default/dist.sh
1,6 → 1,6
#!/bin/sh
#/****************************************************************************
# * Copyright (C) 2009-10 by Claas Anders "CaScAdE" Rathje *
# * Copyright (C) 2009 by Claas Anders "CaScAdE" Rathje *
# * admiralcascade@gmail.com *
# * Project-URL: http://www.mylifesucks.de/oss/c-osd/ *
# * *
23,6 → 23,43
#DATE="20090604-1350"
REVISION=`svn info .. | awk '$1 == "Revision:" {print $2}'`
 
#NCMODES=`find ../ -name osd_ncmode_\*.c| sed 's/..\///g'`
#FCMODES=`find ../ -name osd_fcmode_\*.c| sed 's/..\///g'`
#
# build all the NCMODE files
#for CURRMODE in $NCMODES; do
# CURRSHORTMODE=`echo $CURRMODE | sed -e 's/osd_ncmode_//g' -e 's/.c//g'`
#
# # build pal hex
# export CFLAGS="-DBUILDDATE=\\\"${DATE}\\\" -DOSD_NCMODE=\\\"${CURRMODE}\\\""
# make clean
# make
# mv C-OSD.hex C-OSD-${DATE}-$CURRSHORTMODE-pal.hex
#
# # build ntsc hex
# export CFLAGS="-DNTSC=1 -DBUILDDATE=\\\"${DATE}\\\" -DOSD_NCMODE=\\\"${CURRMODE}\\\""
# make clean
# make
# mv C-OSD.hex C-OSD-${DATE}-$CURRSHORTMODE-ntsc.hex
#done
#
# build all the FCMODE files
#for CURRMODE in $FCMODES; do
# CURRSHORTMODE=`echo $CURRMODE | sed -e 's/osd_fcmode_//g' -e 's/.c//g'`
#
# #build pal hex FCONLY
# export CFLAGS="-DFCONLY=1 -DBUILDDATE=\\\"${DATE}\\\" -DOSD_FCMODE=\\\"${CURRMODE}\\\""
# make clean
# make
# mv C-OSD.hex C-OSD-${DATE}-$CURRSHORTMODE-pal-fconly.hex
#
# # build ntsc hex FCONLY
# export CFLAGS="-DNTSC=1 -DFCONLY=1 -DBUILDDATE=\\\"${DATE}\\\" -DOSD_FCMODE=\\\"${CURRMODE}\\\""
# make clean
# make
# mv C-OSD.hex C-OSD-${DATE}-$CURRSHORTMODE-ntsc-fconly.hex
#done
 
# build pal hex
export CFLAGS="-DBUILDDATE=\\\"${DATE}\\\" "
make clean
48,7 → 85,7
mv C-OSD.hex C-OSD-${DATE}-ntsc-fconly.hex
 
 
# build character files
# buil character files
# PAL
make clean
export CFLAGS="-DWRITECHARS=1 -DBUILDDATE=\\\"${DATE}\\\" "
/C-OSD/trunk/main.c
380,7 → 380,7
 
// init on first data retrival, distinguished by last battery :)
if (last_UBat == 255) {
if (debugData.Analog[9] > 40) {
if (debugData.Analog[9] > 40)
// fix for min_UBat
min_UBat = debugData.Analog[9];
last_UBat = debugData.Analog[9];