📄 paramprop.lst
字号:
outb
outb (sfr, val)
inb
inb (sfr)
outw
outw (sfr, val)
inw
inw (sfr)
outp
outp (val, sfr)
inp
inp (sfr)
bit_is_set
bit_is_set (sfr, bit)
bit_is_set
bit_is_clear (sfr, bit)
loop_until_bit_is_set
loop_until_bit_is_set (sfr, bit)
loop_until_bit_is_clear
loop_until_bit_is_clear (sfr, bit)
cbi
cbi (sfr, bit)
sbi
sbi (sfr, bit)
BV
BV (bit)
fclose
int fclose (FILE *__stream)
vfprintf
int vfprintf (FILE *__stream, const char *__fmt, va_list __ap)
fputc
int fputc (int __c, FILE *__stream)
printf
int printf (const char *__fmt, ...)
printf_P
int printf_P (const char *__fmt, ...)
sprintf
int sprintf (char *__s, const char *__fmt, ...)
sprintf_P
int sprintf_P (char *__s, const char *__fmt, ...)
snprintf
int snprintf (char *__s, size_t __n, const char *__fmt, ...)
snprintf_P
int snprintf_P (char *__s, size_t __n, const char *__fmt, ...)
fprintf
int fprintf (FILE *__stream, const char *__fmt, ...)
fprintf_P
int fprintf_P (FILE *__stream, const char *__fmt, ...)
fputs
int fputs (const char *__str, FILE *__stream)
fputs_P
int fputs_P (const char *__str, FILE *__stream)
puts
int puts (const char *__str)
puts_P
int puts_P (const char *__str)
fwrite
size_t fwrite (const void *__ptr, size_t __size, size_t __nmemb, FILE *__stream)
fgetc
int fgetc (FILE *__stream)
ungetc
int ungetc (int __c, FILE *__stream)
fgets
char * fgets (char *__str, int __size, FILE *__stream)
gets
char * gets (char *__str)
fread
size_t fread (void *__ptr, size_t __size, size_t __nmemb, FILE *__stream)
clearerr
void clearerr (FILE *__stream)
feof
int feof (FILE *__stream)
ferror
int ferror (FILE *__stream)
vfscanf
int vfscanf (FILE *__stream, const char *__fmt, va_list __ap)
fscanf
int fscanf (FILE *__stream, const char *__fmt,...)
fscanf_P
int fscanf_P (FILE *__stream, const char *__fmt,...)
scanf
int scanf (const char *__fmt,...)
scanf_P
int scanf_P (const char *__fmt,...)
sscanf
int sscanf (const char *__buf, const char *__fmt,...)
sscanf_P
int sscanf_P (const char *__buf, const char *__fmt,...)
fdevopen
FILE * fdevopen (int(*put)(char), int(*get)(void), int opts __attribute__((unused)))
memccpy
void * memccpy (void *, const void *, int, size_t)
memchr
void * memchr (const void *, int, size_t) __ATTR_PURE__
memcmp
int memcmp (const void *, const void *, size_t) __ATTR_PURE__
memcpy
void * memcpy (void *, const void *, size_t)
memmove
void * memmove (void *, const void *, size_t)
memset
void * memset (void *, int, size_t)
strcasecmp
int strcasecmp (const char *, const char *) __ATTR_PURE__
strcat
char * strcat (char *, const char *)
strchr
char * strchr (const char *, int) __ATTR_PURE__
strcmp
int strcmp (const char *, const char *) __ATTR_PURE__
strcpy
char * strcpy (char *, const char *)
strlcat
size_t strlcat (char *, const char *, size_t)
strlcpy
size_t strlcpy (char *, const char *, size_t)
strlen
size_t strlen (const char *) __ATTR_PURE__
strlwr
char * strlwr (char *)
strncasecmp
int strncasecmp (const char *, const char *, size_t) __ATTR_PURE__
strncat
char * strncat (char *, const char *, size_t)
strncmp
int strncmp (const char *, const char *, size_t)
strncpy
char * strncpy (char *, const char *, size_t)
strnlen
size_t strnlen (const char *, size_t) __ATTR_PURE__
strrchr
char * strrchr (const char *, int) __ATTR_PURE__
strrev
char * strrev (char *)
strstr
char * strstr (const char *, const char *) __ATTR_PURE__
strupr
char * strupr (char *)
itoa
char * itoa (int __val, char *__s, int __radix)
ltoa
char * ltoa (long int __val, char *__s, int __radix)
utoa
char * utoa (unsigned int __val, char *__s, int __radix)
ultoa
char * ultoa (unsigned long int __val, char *__s, int __radix)
random
long random (void)
srandom
void srandom (unsigned long __seed)
random_r
long random_r (unsigned long *ctx)
dtostre
char * dtostre (double __val, char *__s, unsigned char __prec, unsigned char __flags)
dtostrf
char * dtostrf (double __val, char __width, char __prec, char *__s)
abort
__inline__ void abort (void) __ATTR_NORETURN__
abs
int abs (int __i) __ATTR_CONST__
labs
long labs (long __i) __ATTR_CONST__
bsearch
void * bsearch (const void *__key, const void *__base, size_t __nmemb, size_t __size, int(*__compar)(const void *, const void *))
div
div_t div (int __num, int __denom) __asm__("__divmodhi4") __ATTR_CONST__
ldiv
ldiv_t ldiv (long __num, long __denom) __asm__("__divmodsi4") __ATTR_CONST__
qsort
void qsort (void *__base, size_t __nmemb, size_t __size, __compar_fn_t __compar)
strtol
long strtol (const char *__nptr, char **__endptr, int __base)
stroul
unsigned long strtoul (const char *__nptr, char **__endptr, int __base)
atol
__inline__ long atol (const char *__nptr) __ATTR_PURE__
atoi
__inline__ int atoi (const char *__nptr) __ATTR_PURE__
exit
void exit (int __status) __ATTR_NORETURN__
malloc
void * malloc (size_t __size) __ATTR_MALLOC__
free
void free (void *__ptr)
calloc
void * calloc (size_t __nele, size_t __size) __ATTR_MALLOC__
strtod
double strtod (const char *__nptr, char **__endptr)
rand
int rand (void)
srand
void srand (unsigned int __seed)
rand_r
int rand_r (unsigned long *ctx)
SIGNAL
SIGNAL (signame)
INTERRUPT
INTERRUPT (signame)
EMPTY_INTERRUPT
EMPTY_INTERRUPT (signame)
setjmp
int setjmp (jmp_buf __jmpb)
longjmp
void longjmp (jmp_buf __jmpb, int __ret) __ATTR_NORETURN__
cos
double cos (double __x) __ATTR_CONST__
fabs
double fabs (double __x) __ATTR_CONST__
fmod
double fmod (double __x, double __y) __ATTR_CONST__
modf
double modf (double __value, double *__iptr)
sin
double sin (double __x) __ATTR_CONST__
sqrt
double sqrt (double __x) __ATTR_CONST__
tan
double tan (double __x) __ATTR_CONST__
floor
double floor (double __x) __ATTR_CONST__
ceil
double ceil (double __x) __ATTR_CONST__
frexp
double frexp (double __value, int *__exp)
ldexp
double ldexp (double __x, int __exp) __ATTR_CONST__
exp
double exp (double _x) __ATTR_CONST__
cosh
double cosh (double __x) __ATTR_CONST__
sinh
double sinh (double __x) __ATTR_CONST__
tanh
double tanh (double __x) __ATTR_CONST__
acos
double acos (double __x) __ATTR_CONST__
asin
double asin (double __x) __ATTR_CONST__
atan
double atan (double __x) __ATTR_CONST__
atan2
double atan2 (double __y, double __x) __ATTR_CONST__
log
double log (double __x) __ATTR_CONST__
log10
double log10 (double __x) __ATTR_CONST__
pow
double pow (double __x, double __y) __ATTR_CONST__
isnan
int isnan (double __x) __ATTR_CONST__
isinf
int isinf (double __x) __ATTR_CONST__
square
double square (double __x) __ATTR_CONST__
inverse
double inverse (double) __ATTR_CONST__
isalnum
int isalnum (int __c) __ATTR_CONST__
isalpha
int isalpha (int __c) __ATTR_CONST__
isascii
int isascii (int __c) __ATTR_CONST__
isblank
int isblank (int __c) __ATTR_CONST__
iscntrl
int iscntrl (int __c) __ATTR_CONST__
isdigit
int isdigit (int __c) __ATTR_CONST__
isgraph
int isgraph (int __c) __ATTR_CONST__
islower
int islower (int __c) __ATTR_CONST__
isprint
int isprint (int __c) __ATTR_CONST__
ispunct
int ispunct (int __c) __ATTR_CONST__
isspace
int isspace (int __c) __ATTR_CONST__
isupper
int isupper (int __c) __ATTR_CONST__
isxdigit
int isxdigit (int __c) __ATTR_CONST__
toascii
int toascii (int __c) __ATTR_CONST__
tolower
int tolower (int __c) __ATTR_CONST__
toupper
int toupper (int __c) __ATTR_CONST__
wdt_enable
wdt_enable (timeout)
set_sleep_mode
void set_sleep_mode (uint8_t mode)
sleep_mode
void sleep_mode (void)
PRG_RDB
PRG_RDB (addr)
PSTR
PSTR (s)
pgm_read_byte_near
pgm_read_byte_near (address_short)
pgm_read_word_near
pgm_read_word_near (address_short)
pgm_read_byte_far
pgm_read_byte_far (address_long)
pgm_read_word_far
pgm_read_word_far (address_long)
pgm_read_byte
pgm_read_byte (address_short)
pgm_read_word
pgm_read_word (address_short)
memcpy_P
void * memcpy_P (void *, PGM_VOID_P, size_t)
strcasecmp_P
int strcasecmp_P (const char *, PGM_P) __ATTR_PURE__
strcat_P
char * strcat_P (char *, PGM_P)
strcmp_P
int strcmp_P (const char *, PGM_P) __ATTR_PURE__
strcpy_P
char * strcpy_P (char *, PGM_P)
strlen_P
size_t strlen_P (PGM_P) __ATTR_CONST__
strncasecmp_P
int strncasecmp_P (const char *, PGM_P, size_t) __ATTR_PURE__
strncat_P
char * strncat_P (char *, PGM_P, size_t)
strncmp_P
int strncmp_P (const char *, PGM_P, size_t) __ATTR_PURE__
strncpy_P
char * strncpy_P (char *, PGM_P, size_t)
eeprom_read_byte
uint8_t eeprom_read_byte (const uint8_t *addr)
eeprom_read_word
uint16_t eeprom_read_word (const uint16_t *addr)
eeprom_read_block
void eeprom_read_block (void *buf, const void *addr, size_t n)
eeprom_write_byte
void eeprom_write_byte (uint8_t *addr, uint8_t val)
eeprom_write_word
void eeprom_write_word (uint16_t *addr, uint16_t val)
eeprom_write_block
void eeprom_write_block (const void *buf, void *addr, size_t n)
eeprom_rb
eeprom_rb (addr)
eeprom_rw
eeprom_rw (addr)
eeprom_wb
eeprom_wb (addr, val)
_EEPUT
_EEPUT (addr, val)
_EEGET
_EEGET (var, addr)
boot_page_fill
boot_page_fill (address, data)
boot_page_erase
boot_page_erase (address)
boot_page_write
boot_page_write (address)
boot_lock_bits_set
boot_lock_bits_set (lock_bits)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -