diff options
author | Christian Pointner <equinox@mur.at> | 2011-09-26 21:19:25 +0000 |
---|---|---|
committer | Christian Pointner <equinox@mur.at> | 2011-09-26 21:19:25 +0000 |
commit | 313be20fb0a901721521b5b68009bbc8c7605f37 (patch) | |
tree | e68c92847816048197d1a85262cc5b24f7b16611 /software/ihu/tables.inc | |
parent | dmtftest now sends sign until s is pressed (diff) |
dtmf decoder works
git-svn-id: https://svn.spreadspace.org/mur.sat@168 7de4ea59-55d0-425e-a1af-a3118ea81d4c
Diffstat (limited to 'software/ihu/tables.inc')
-rw-r--r-- | software/ihu/tables.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/software/ihu/tables.inc b/software/ihu/tables.inc index 5a72504..63d4ddc 100644 --- a/software/ihu/tables.inc +++ b/software/ihu/tables.inc @@ -49,6 +49,25 @@ digit retlw 'E' retlw 'F' +dtmfSign + addwf PCL,f + retlw 'D' + retlw '1' + retlw '2' + retlw '3' + retlw '4' + retlw '5' + retlw '6' + retlw '7' + retlw '8' + retlw '9' + retlw '0' + retlw '*' + retlw '#' + retlw 'A' + retlw 'B' + retlw 'C' + mul10 addwf PCL,f retlw .0 |