|
|
@ -13,18 +13,35 @@ int main() { |
|
|
|
uint32_t short_code; |
|
|
|
uint64_t common_code = 0x1A9BF0C00; |
|
|
|
|
|
|
|
short_code_enable_fast(); |
|
|
|
|
|
|
|
if (!common_code_to_raw_code(common_code, &raw_code)) { |
|
|
|
// short_code_enable_fast();
|
|
|
|
//
|
|
|
|
// if (!common_code_to_raw_code(common_code, &raw_code)) {
|
|
|
|
// printf("error\n");
|
|
|
|
// } else {
|
|
|
|
// printf("raw code -> %015lX\n", raw_code);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// if (!common_code_to_short_code(common_code, &short_code)) {
|
|
|
|
// printf("error\n");
|
|
|
|
// } else {
|
|
|
|
// printf("short code -> %d\n", short_code);
|
|
|
|
// }
|
|
|
|
|
|
|
|
char common_code_str[10]; |
|
|
|
if (!common_code_to_string(common_code, common_code_str)) { |
|
|
|
printf("error\n"); |
|
|
|
} else { |
|
|
|
printf("raw code -> %015lX\n", raw_code); |
|
|
|
printf("string -> %s\n", common_code_str); |
|
|
|
} |
|
|
|
|
|
|
|
if (!common_code_to_short_code(common_code, &short_code)) { |
|
|
|
if (!common_code_to_string_shorten(common_code, common_code_str)) { |
|
|
|
printf("error\n"); |
|
|
|
} else { |
|
|
|
printf("string shorten -> %s\n", common_code_str); |
|
|
|
} |
|
|
|
if (!common_code_from_string(common_code_str, &common_code)) { |
|
|
|
printf("error\n"); |
|
|
|
} else { |
|
|
|
printf("short code -> %d\n", short_code); |
|
|
|
printf("common code -> %09lX\n", common_code); |
|
|
|
} |
|
|
|
|
|
|
|
// printf("cli exit\n");
|
|
|
|