HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Math IO functions, and verious conversion code with floating point support. More...
Go to the source code of this file.
Data Structures | |
struct | _printf_t |
undefine any potential macro version of these functions More... | |
union | f_t |
format specifier flags More... | |
struct | p_ch_t |
Data structure for character buffer with limits. More... | |
Macros | |
#define | MEMSPACE |
#define | __memx |
#define | WEAK_ATR __attribute__((weak)) |
#define | PSTR_X(a) ((__memx const char *) PSTR(a) ) |
Typedefs | |
typedef struct _printf_t | printf_t |
undefine any potential macro version of these functions More... | |
Functions | |
int | putchar (int c) |
put a character to stdout See fdevopen() sets stream->put get for TTY devices More... | |
MEMSPACE int | atodigit (int c, int radix) |
Convert ASCII character to radix based digit , or -1. More... | |
MEMSPACE long | atoh (const char *p) |
Convert ASCII hex string to long integer. More... | |
MEMSPACE long | aton (char *str, int base) |
Convert ASCII string to number in a given base. More... | |
MEMSPACE int | mul10str (uint8_t *str, int size) |
Fast multiply number of any size by 10. More... | |
MEMSPACE long | strtol (const char *nptr, char **endptr, int base) |
Convert ASCII string to number in a given base. More... | |
MEMSPACE long long | strtoll (const char *nptr, char **endptr, int base) |
Convert ASCII string to number in a given base. More... | |
MEMSPACE int | atoi (const char *str) |
Convert ASCII string to number in base 10. More... | |
MEMSPACE long | atol (const char *str) |
Convert ASCII string to number in base 10. More... | |
MEMSPACE double | iexp (double num, int exp) |
MEMSPACE double | scale10 (double num, int *exp) |
MEMSPACE double | strtod (const char *nptr, char **endptr) |
MEMSPACE double | atof (const char *str) |
MEMSPACE size_t WEAK_ATR | strlen (const char *str) |
String Length. More... | |
MEMSPACE int WEAK_ATR | isdigit (int c) |
test if a character is a digit More... | |
MEMSPACE void WEAK_ATR | reverse (char *str) |
Reverse a string in place Example: abcdef -> fedcba. More... | |
MEMSPACE void WEAK_ATR | strupper (char *str) |
UPPERCASE a string. More... | |
MEMSPACE int | bin2num (uint8_t *str, int strmax, int nummin, int base, uint8_t *nump, int numsize, int sign_ch) |
Convert an unsigned number (numsize bytes in size) to ASCII in specified base Notes: No limit except available memory on number size. More... | |
MEMSPACE void | pch_init (p_ch_t *p, char *str, int max) |
Initialize character buffer with limits. More... | |
MEMSPACE int | pch (p_ch_t *p, char ch) |
Put character in buffer with limits. More... | |
MEMSPACE int | pch_ind (p_ch_t *p) |
Return current index of character buffer with limits. More... | |
MEMSPACE int | pch_max_ind (p_ch_t *p) |
Return maximum valid index for character buffer. More... | |
MEMSPACE void | print_flags (f_t f) |
print flags set in t_t structure More... | |
MEMSPACE int | p_ntoa (uint8_t *nump, int numsize, char *str, int strmax, int radix, int width, int prec, f_t f) |
Convert number an base 2 .. 16 to ASCII with optional sign Notes: 1) Numbers can be any number of digits long - limited only by memory available To print negative numbers convert to positive before calling this function and set f.b.neg 2) Warning: as with printf width and prec are only minimum sizes - results can be bigger We assume all numbers are positive: More... | |
MEMSPACE int | p_ftoa (double val, char *str, int max, int width, int prec, f_t f) |
MEMSPACE int | p_etoa (double val, char *str, int max, int width, int prec, f_t f) |
MEMSPACE void | _puts_pad (printf_t *fn, char *s, int width, int count, int left) |
put string, via user function, count bytes long, padded up to width, left or right aligned More... | |
MEMSPACE void | _printf_fn (printf_t *fn, __memx const char *fmt, va_list va) |
vsnprintf function More... | |
MEMSPACE void | _putc_buffer_fn (struct _printf_t *p, char ch) |
_putc_buffer_fn - character output to a string buffer Used by snprintf and vsnprintf You can make _printf_fn call this helper for each character More... | |
MEMSPACE int | vsnprintf (char *str, size_t size, const char *format, va_list va) |
vsnprintf function More... | |
MEMSPACE int | snprintf (char *str, size_t size, const char *format,...) |
snprintf function More... | |
MEMSPACE int | printf (const char *format,...) |
int | sscanf (const char *strp, const char *fmt,...) |
Math IO functions, and verious conversion code with floating point support.
This is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file mathio.h.
undefine any potential macro version of these functions
We let printf use user defined I/O functions
vsnprintf function
[out] | fn | output character function pointer |
[in] | fmt | printf forat string |
[in] | va | va_list arguments |
Calling Variadic Functions
Definition at line 806 of file printf.c.
Referenced by fprintf(), and vsnprintf().
_putc_buffer_fn - character output to a string buffer Used by snprintf and vsnprintf You can make _printf_fn call this helper for each character
[in] | *p | structure with pointers and buffer to be written to |
[in] | ch | character to place in buffer |
Definition at line 1187 of file printf.c.
Referenced by vsnprintf().
put string, via user function, count bytes long, padded up to width, left or right aligned
[out] | fn | output character function pointer |
[in] | s | string |
[in] | width | of characters to pad up to - if needed |
[in] | count | number of characters to copy from buff |
[in] | left | string is left aligned |
Definition at line 678 of file printf.c.
Referenced by _printf_fn().
MEMSPACE int atodigit | ( | int | c, |
int | radix | ||
) |
MEMSPACE double atof | ( | const char * | str | ) |
MEMSPACE long atoh | ( | const char * | p | ) |
Convert ASCII hex string to long integer.
[in] | p | String to convert. |
Definition at line 80 of file mathio.c.
Referenced by gpib_tests().
MEMSPACE int atoi | ( | const char * | str | ) |
MEMSPACE long atol | ( | const char * | str | ) |
Convert ASCII string to number in base 10.
[in] | str | string |
Definition at line 299 of file mathio.c.
Referenced by fatfs_tests(), lif_tests(), and main().
MEMSPACE long aton | ( | char * | str, |
int | base | ||
) |
MEMSPACE int bin2num | ( | uint8_t * | str, |
int | strmax, | ||
int | nummin, | ||
int | base, | ||
uint8_t * | nump, | ||
int | numsize, | ||
int | sign_ch | ||
) |
Convert an unsigned number (numsize bytes in size) to ASCII in specified base Notes: No limit except available memory on number size.
[out] | str | ASCII number string result |
[in] | strmax | maximum size of str in bytes |
[in] | nummin | minimum number of digits to display |
[in] | *nump | Pointer to binary number |
[in] | numsize | size of binary number in bytes |
[in] | sign_ch | sign of binary number return converted number string numsize in bytes |
Definition at line 143 of file printf.c.
Referenced by p_ntoa().
MEMSPACE double iexp | ( | double | num, |
int | exp | ||
) |
test if a character is a digit
undo any existing macros
[in] | c | character |
Definition at line 40 of file stringsup.c.
Referenced by _printf_fn().
MEMSPACE int mul10str | ( | uint8_t * | str, |
int | size | ||
) |
Referenced by _printf_fn().
Referenced by _printf_fn().
MEMSPACE int p_ntoa | ( | uint8_t * | nump, |
int | numsize, | ||
char * | str, | ||
int | strmax, | ||
int | radix, | ||
int | width, | ||
int | prec, | ||
f_t | f | ||
) |
Convert number an base 2 .. 16 to ASCII with optional sign Notes: 1) Numbers can be any number of digits long - limited only by memory available To print negative numbers convert to positive before calling this function and set f.b.neg 2) Warning: as with printf width and prec are only minimum sizes - results can be bigger We assume all numbers are positive:
[in] | nump | number pointer |
[in] | numsize | number size in bytes |
[out] | *str | string result |
[in] | strmax | strmaximum length of string result |
[in] | radix | Radix may be 2 .. 16 |
[in] | width | Width of result padded if needed |
[in] | prec | minumum number of digits, zero padded if needed |
[in] | f | flags f.b.left justify left f.b.plus display + for positive number, - for negative numbers f.b.space display ' ' for positive, - for negative f.b.zero pad with zeros if needed f.b.alt Alternate display form - work in progress f.b.width Width of result - pad if required f.b.prec Zero padd to prec if sepcified f.b.neg Sign of number is negative |
Definition at line 314 of file printf.c.
Referenced by _printf_fn().
MEMSPACE int printf | ( | const char * | format, |
... | |||
) |
Referenced by alloc_device(), assign_value(), buffer_read_open(), cat(), clock_elapsed_end(), copy(), dbf_close(), dbf_lseek(), dbf_open(), dbf_read(), dbf_write(), DeleteRowCol(), Determinant(), display_Addresses(), display_clock(), display_Config(), display_mount(), display_mounts(), display_ts(), drives_help(), dump_stat(), DumpData(), fatfs_filinfo_list(), fatfs_help(), fatfs_ls(), fatfs_status(), fatfs_tests(), fgetc(), format_drives(), fputc(), GPIB(), gpib_bus_init(), gpib_detect_PP(), gpib_disable_PPR(), gpib_enable_PPR(), gpib_error_test(), gpib_file_init(), gpib_help(), GPIB_LISTEN(), gpib_read_byte(), gpib_read_str(), GPIB_SECONDARY_ADDRESS(), gpib_state_init(), GPIB_TALK(), gpib_tests(), gpib_timer_elapsed_end(), gpib_timer_init(), gpib_trace_task(), gpib_unread(), gpib_write_byte(), gpib_write_str(), help(), hpdir_find_drive(), hpdir_set_device(), hpdir_set_parameters(), i2c_check_op(), i2c_display_task_errors(), i2c_fn(), i2c_init(), i2c_print_error(), i2c_rtc_read(), i2c_rtc_write(), init_timers(), initialize_clock(), Invert(), lif_add_ascii_file_as_e010(), lif_add_ascii_file_as_e010_wrapper(), lif_add_lif_file(), lif_ascii_string_to_e010(), lif_calloc(), lif_check_dir(), lif_check_volume(), lif_checkdirindex(), lif_create_image(), lif_create_volume(), lif_del_file(), lif_dir(), lif_dump_vol(), lif_e010_pad_sector(), lif_extract_e010_as_ascii(), lif_extract_lif_as_lif(), lif_find_file(), lif_free(), lif_help(), lif_newdir(), lif_open(), lif_open_volume(), lif_read(), lif_readdirindex(), lif_rename_file(), lif_rename_volume(), lif_seek_msg(), lif_stat(), lif_tests(), lif_updatefree(), lif_write(), listen_cleanup(), ls(), ls_info(), lseek(), main(), MatAlloc(), MATCHARGS(), MatFree(), MatMul(), MatPrint(), MatRead(), mkfs(), mmc_init(), mmc_install_timer(), mmc_test_timeout(), mount(), mount_usage(), normalize(), perror(), portio_help(), portio_tests(), posix_help(), posix_tests(), ppr_init(), print_dst(), print_dst_gmt(), print_flags(), print_str_P(), print_tok(), print_tok_str(), print_tok_val(), print_var_P(), printer_buffer(), printer_close(), PRINTER_COMMANDS(), printer_open(), PrintFree(), put_rc(), Read_Config(), receive_plot_flush(), rtc_init(), rtc_read(), rtc_run(), rtc_write(), safecalloc(), safefree(), safemalloc(), select(), Send_Identify(), sep(), set_active_device(), set_Config_Defaults(), set_timers(), setdate(), setdate_r(), SPI0_Init(), SPI0_Mode(), SPI0_Speed(), spi_begin(), spi_end(), SS80_Amigo_Clear(), SS80_Check_Unit(), SS80_Check_Volume(), SS80_cmd_seek(), SS80_Command_State(), SS80_COMMANDS(), SS80_describe(), SS80_display_extended_status(), SS80_error_return(), SS80_Execute_State(), SS80_increment(), SS80_init(), SS80_locate_and_read(), SS80_locate_and_write(), SS80_Report(), SS80_Selected_Device_Clear(), SS80_send_status(), SS80_Test(), SS80_Transparent_State(), td02lif(), td0_analize_format(), td0_help(), td0_hexdump(), td0_open(), td0_read_disk(), td0_rle(), td0_save_lif(), td0_save_lif_sector(), td0_sectorinfo(), td0_trackinfo(), td0_unpack_disk_header(), td0_unpack_track_header(), test_address(), test_ppr(), testpage(), timetests(), tm2epoch(), umount(), user_task(), and verify_device().
int putchar | ( | int | c | ) |
put a character to stdout See fdevopen() sets stream->put get for TTY devices
[in] | stream | POSIX stream pointer. |
Definition at line 363 of file posix.c.
Referenced by print_tok(), print_tok_str(), print_tok_val(), and td0_hexdump().
Reverse a string in place Example: abcdef -> fedcba.
[in] | str | string |
Definition at line 233 of file stringsup.c.
Referenced by bin2num().
MEMSPACE double scale10 | ( | double | num, |
int * | exp | ||
) |
int sscanf | ( | const char * | strp, |
const char * | fmt, | ||
... | |||
) |
Referenced by MatRead(), and setdate_r().
String Length.
[in] | str | string |
Definition at line 144 of file stringsup.c.
Referenced by _printf_fn(), cat(), fatfs_scan_files(), get_line(), gpib_trace_display(), hpdir_find_drive(), lif_ascii_string_to_e010(), lif_find_file(), lif_fixname(), lif_stralloc(), ls(), MATCH(), MATCH_LEN(), MATCHI(), MATCHI_LEN(), mctime(), readdir(), reverse(), stralloc(), td02lif(), token(), trim_tail(), and vsnprintf().
MEMSPACE long strtol | ( | const char * | nptr, |
char ** | endptr, | ||
int | base | ||
) |
Convert ASCII string to number in a given base.
[in] | nptr | string |
[in] | endptr | pointer to string pointer return value |
[in] | base | radix |
Definition at line 139 of file mathio.c.
Referenced by atoh(), atoi(), atol(), aton(), get_value(), posix_tests(), and setdate_r().
MEMSPACE long long strtoll | ( | const char * | nptr, |
char ** | endptr, | ||
int | base | ||
) |
UPPERCASE a string.
[in] | str | string |
Definition at line 256 of file stringsup.c.
Referenced by _printf_fn().
vsnprintf function
[out] | str | string buffer for result |
[in] | size | maximum length of converted string |
[in] | format | printf forat string |
[in] | va | va_list list of arguments |
Definition at line 1220 of file printf.c.
Referenced by snprintf().