Searched refs:item_str (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-3.4.0/examples/peripherals/uart/nmea0183_parser/main/ |
D | nmea_parser.c | 54 char item_str[NMEA_MAX_STATEMENT_ITEM_LENGTH]; /*!< Current item */ member 71 float ll = strtof(esp_gps->item_str, NULL); in parse_lat_long() 96 esp_gps->parent.tim.hour = convert_two_digit2number(esp_gps->item_str + 0); in parse_utc_time() 97 esp_gps->parent.tim.minute = convert_two_digit2number(esp_gps->item_str + 2); in parse_utc_time() 98 esp_gps->parent.tim.second = convert_two_digit2number(esp_gps->item_str + 4); in parse_utc_time() 99 if (esp_gps->item_str[6] == '.') { in parse_utc_time() 102 while (esp_gps->item_str[i]) { in parse_utc_time() 103 tmp = 10 * tmp + esp_gps->item_str[i] - '0'; in parse_utc_time() 127 if (esp_gps->item_str[0] == 'S' || esp_gps->item_str[0] == 's') { in parse_gga() 135 if (esp_gps->item_str[0] == 'W' || esp_gps->item_str[0] == 'w') { in parse_gga() [all …]
|
/hal_espressif-3.4.0/tools/kconfig/lxdialog/ |
D | menubox.c | 105 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \ 293 j = first_alpha(item_str(), "YyNnMmHh"); in dialog_menu() 294 if (key == tolower(item_str()[j])) in dialog_menu() 300 j = first_alpha(item_str(), "YyNnMmHh"); in dialog_menu() 301 if (key == tolower(item_str()[j])) in dialog_menu()
|
D | checklist.c | 36 strncpy(list_item, item_str(), list_width - item_x); in print_item() 182 check_x = MAX(check_x, strlen(item_str()) + 4); in dialog_checklist() 213 if (toupper(key) == toupper(item_str()[0])) in dialog_checklist()
|
D | dialog.h | 192 const char *item_str(void);
|
D | util.c | 700 const char *item_str(void) in item_str() function
|