diff options
-rw-r--r-- | software/ttx/ttx.asm | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/software/ttx/ttx.asm b/software/ttx/ttx.asm index 5fd15d4..d04381a 100644 --- a/software/ttx/ttx.asm +++ b/software/ttx/ttx.asm @@ -514,7 +514,13 @@ caseend ;; ------------------------------------- send_parity - return ; TODO + movf PARITY,w + btfsc PARITY,5 + xorlw b'00000001' + andlw b'00011111' + call base32 + call send_char + return ;; ------------------------------------- send_beacon @@ -547,9 +553,9 @@ send_beacon movlw .10 call send_base32 - ;; movlw WSPACE - ;; call dottime - ;; call send_parity + movlw WSPACE + call dottime + call send_parity bcf GPIO,CWENABLE return |