summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/protocols/ihu-ttx.txt10
-rw-r--r--software/ihu/ihu.asm48
-rw-r--r--software/ttx/ttx.asm2
3 files changed, 30 insertions, 30 deletions
diff --git a/doc/protocols/ihu-ttx.txt b/doc/protocols/ihu-ttx.txt
index cde59d7..d4fdcec 100644
--- a/doc/protocols/ihu-ttx.txt
+++ b/doc/protocols/ihu-ttx.txt
@@ -46,14 +46,14 @@ Commands
Hex '0'
~~~~~~~
- This tells the TTX to shut up. The TTX will send out one aknowledge over cw and after
+ This tells the TTX to shut up. The TTX will send out one aknowledge over CW and after
that disables any further broadcasts. The 1 octet of data contains the ASCII code to
use for the CW aknowledge.
Hex '1'
~~~~~~~
- This is the reverse of the '0' command. The TTX will send out an aknowledge over cw
+ This is the reverse of the '0' command. The TTX will send out an aknowledge over CW
and reenables broadcasting of beacons. The 1 octet of data contains the ASCII code to
use for the CW aknowledge.
@@ -66,13 +66,13 @@ Commands
Hex '3'
~~~~~~~
- This sets a new cw speed. It is followed by four octets representing the dot, dash,
+ This sets a new CW speed. It is followed by four octets representing the dot, dash,
word space and tune times.
Hex 'A'
~~~~~~~
- This instructs the TTX to send out an aknowledge frame over cw. The command
+ This instructs the TTX to send out an aknowledge frame over CW. The command
has 1 octet of data containing the ASCII Code of the aknowledge to send out.
Hex 'B'
@@ -87,7 +87,7 @@ Commands
This command sends the latest telemetry values to the TTX. This values will be used
in the very next beacon and until new values get transmitted. In case of a power fail
- these values will be reset by the IHU so the TTY doesn't have to store this values in
+ these values will be reset by the IHU so the TTX doesn't have to store this values in
non volatile memory.
The contents and length of the data field are to be defined.
diff --git a/software/ihu/ihu.asm b/software/ihu/ihu.asm
index 45ad1d4..cec3e51 100644
--- a/software/ihu/ihu.asm
+++ b/software/ihu/ihu.asm
@@ -581,34 +581,34 @@ main
;; --------------------
;; Temp Test program
- movf TMP,f
- btfsc STATUS,Z
- goto main
+ ;; movf TMP,f
+ ;; btfsc STATUS,Z
+ ;; goto main
- call temp_read_value
- swapf OWIRE_BYTE,w
- andlw b'00001111'
- call digit
- movwf TXREG
- movlw .1
- call wait_ms
+ ;; call temp_read_value
+ ;; swapf OWIRE_BYTE,w
+ ;; andlw b'00001111'
+ ;; call digit
+ ;; movwf TXREG
+ ;; movlw .1
+ ;; call wait_ms
- movf OWIRE_BYTE,w
- andlw b'00001111'
- call digit
- movwf TXREG
- movlw .1
- call wait_ms
+ ;; movf OWIRE_BYTE,w
+ ;; andlw b'00001111'
+ ;; call digit
+ ;; movwf TXREG
+ ;; movlw .1
+ ;; call wait_ms
- movlw '\r'
- movwf TXREG
- movlw .1
- call wait_ms
- movlw '\n'
- movwf TXREG
+ ;; movlw '\r'
+ ;; movwf TXREG
+ ;; movlw .1
+ ;; call wait_ms
+ ;; movlw '\n'
+ ;; movwf TXREG
- clrf TMP
- goto main
+ ;; clrf TMP
+ ;; goto main
;; -------------------------------------
;; END
diff --git a/software/ttx/ttx.asm b/software/ttx/ttx.asm
index 6249db4..6e974c9 100644
--- a/software/ttx/ttx.asm
+++ b/software/ttx/ttx.asm
@@ -76,7 +76,7 @@ RX_BIT_CNT EQU H'004E'
RX_BYTE_CNT EQU H'004F'
RX_CMD EQU H'0050'
RX_D_START EQU H'0051'
-RX_D_END EQU H'005F'
+RX_D_END EQU H'0060'
;; all pages
BEACON_INT EQU H'0070'