Home
last modified time | relevance | path

Searched refs:o1hex (Results 1 – 1 of 1) sorted by relevance

/hal_rpi_pico-latest/test/pico_divider_test/
Dpico_divider_test.c47 void o1hex(int u) {u&=0x0f; if(u>=10) o1ch(u-10+'A'); else o1ch(u+'0');} in o1hex() function
48 void o2hex(int u) {o1hex(u>> 4); o1hex(u);} in o2hex()