utils: Fix typo. It is ascii.

This commit is contained in:
Holger Hans Peter Freyther 2010-11-19 19:20:46 +01:00
parent fe851ffc57
commit 121f358de0
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ char bcd2char(uint8_t bcd)
return 'A' + (bcd - 0xa);
}
/* only works for numbers in ascci */
/* only works for numbers in ascii */
uint8_t char2bcd(char c)
{
return c - 0x30;