The HENA source code currently being developed will be located in $HENAHOME/application/software. To compile the code:
cd $HENAHOME/application/software compile.shTwo binaries are produced. hena.dld is a version that can be loaded into page 0 RAM and run. henae.dld is a version that can be saved in EEPROM.
To load the HENA code into EEPROM from GSEOS, first make sure the current binary henae.dld is present on the PC host. Then do the following while viewing the GSEOS development screen:
To release a software version, first compile it as described above. Then rename the software source code directory and write protect it:
cd $HENAHOME/application mv software software-VER chmod -R a-w software-VERwhere VER is the software version number
To create a new version of the software for modification, the last version is copied into a new directory using the following procedure:
cd $HENAHOME/application cp -pr software-VER software chmod -R ug+w softwarewhere VER is the last version number. Then change the software to report the new version number:
cd software vi stat-dflt.fr # change sw-version vi compile.sh # change VER
Go to HENA Project Page.
Report problems to John Hayes.