MCPcopy Create free account

hub / github.com/MCUdude/MiniCore / functions

Functions431 in github.com/MCUdude/MiniCore

FunctiondisablePower
avr/cores/MCUdude_corefiles/wiring_extras.h:217
FunctiondisableSleep
avr/cores/MCUdude_corefiles/wiring_extras.h:87
Methoddtr
avr/cores/MCUdude_corefiles/CDC.cpp:273
FunctionenablePower
avr/cores/MCUdude_corefiles/wiring_extras.h:158
FunctionenableSleep
avr/cores/MCUdude_corefiles/wiring_extras.h:78
Methodend
avr/libraries/SPI/src/SPI.cpp:66
Methodend
avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp:445
Methodend
avr/libraries/EEPROM/src/EEPROM.h:126
Methodend
avr/libraries/SPI1/src/SPI1.cpp:66
Methodend
avr/libraries/Wire/src/Wire.cpp:83
Methodend
avr/cores/MCUdude_corefiles/CDC.cpp:169
Methodend
avr/cores/MCUdude_corefiles/HardwareSerial.cpp:152
Methodend
avr/cores/MCUdude_corefiles/WString.h:165
MethodendTransaction
After performing a group of transfers and releasing the chip select signal, this function allows others to access the SPI bus
avr/libraries/SPI/src/SPI.h:263
MethodendTransaction
After performing a group of transfers and releasing the chip select signal, this function allows others to access the SPI bus
avr/libraries/SPI1/src/SPI1.h:260
MethodendTransmission
Originally, 'endTransmission' was an f(void) function. It has been modified to take one parameter indicating whether or not a STOP should be performed
avr/libraries/Wire/src/Wire.cpp:222
MethodendsWith
avr/cores/MCUdude_corefiles/WString.cpp:502
Methodequals
avr/cores/MCUdude_corefiles/WString.cpp:445
MethodequalsIgnoreCase
avr/cores/MCUdude_corefiles/WString.cpp:477
Methodfetch_data
* @brief Read bytes from the flash memory and write its content to the RAM * buffer. You can read as many or as few bytes as you want. There are no p
avr/libraries/Flash/src/Flash.cpp:189
Methodfetch_page
* @brief Reads a flash page and write its content to the RAM buffer * * @param flash_page_number page number to read from */
avr/libraries/Flash/src/Flash.cpp:160
Methodfind
find returns true if the target string is found
avr/cores/MCUdude_corefiles/Stream.cpp:93
Methodfind
reads data from the stream until the target string is found
avr/cores/MCUdude_corefiles/Stream.h:71
MethodfindMulti
avr/cores/MCUdude_corefiles/Stream.cpp:255
MethodfindUntil
as find but search ends if the terminator string is found
avr/cores/MCUdude_corefiles/Stream.cpp:106
MethodfindUntil
as find but search ends if the terminator string is found
avr/cores/MCUdude_corefiles/Stream.h:81
Methodflush
avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp:530
Methodflush
avr/libraries/Wire/src/Wire.cpp:323
Methodflush
avr/cores/MCUdude_corefiles/CDC.cpp:203
Methodflush
avr/cores/MCUdude_corefiles/HardwareSerial.cpp:202
Methodflush
avr/cores/MCUdude_corefiles/Print.h:65
MethodfromString
avr/cores/MCUdude_corefiles/IPAddress.h:50
MethodfromString
avr/cores/MCUdude_corefiles/IPAddress.cpp:46
MethodgetBytes
avr/cores/MCUdude_corefiles/WString.cpp:538
MethodgetShortName
avr/cores/MCUdude_corefiles/PluggableUSB.h:38
MethodgetTimeout
sets maximum milliseconds to wait for stream data, default is 1 second
avr/cores/MCUdude_corefiles/Stream.h:68
MethodgetWireTimeoutFlag
* Returns the TWI timeout flag. * * @return true if timeout has occured since the flag was last cleared. */
avr/libraries/Wire/src/Wire.cpp:162
MethodgetWriteError
avr/cores/MCUdude_corefiles/Print.h:48
Methodhandle_interrupt
static */
avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp:229
MethodindexOf
avr/cores/MCUdude_corefiles/WString.cpp:555
Methodinit
avr/cores/MCUdude_corefiles/WString.cpp:132
Methodinit_AlwaysInline
avr/libraries/SPI/src/SPI.h:91
Methodinit_AlwaysInline
avr/libraries/SPI1/src/SPI1.h:88
Methodinit_MightInline
avr/libraries/SPI/src/SPI.h:88
Methodinit_MightInline
avr/libraries/SPI1/src/SPI1.h:85
FunctionisAlpha
Checks for an alphabetic character. It is equivalent to (isupper(c) || islower(c)).
avr/cores/MCUdude_corefiles/WCharacter.h:54
FunctionisAlphaNumeric
Checks for an alphanumeric character. It is equivalent to (isalpha(c) || isdigit(c)).
avr/cores/MCUdude_corefiles/WCharacter.h:46
FunctionisAscii
Checks whether c is a 7-bit unsigned char value that fits into the ASCII character set.
avr/cores/MCUdude_corefiles/WCharacter.h:62
FunctionisControl
Checks for a control character.
avr/cores/MCUdude_corefiles/WCharacter.h:76
FunctionisDigit
Checks for a digit (0 through 9).
avr/cores/MCUdude_corefiles/WCharacter.h:83
FunctionisGraph
Checks for any printable character except space.
avr/cores/MCUdude_corefiles/WCharacter.h:90
FunctionisHexadecimalDigit
Checks for a hexadecimal digits, i.e. one of 0 1 2 3 4 5 6 7 8 9 a b c d e f A B C D E F.
avr/cores/MCUdude_corefiles/WCharacter.h:136
MethodisListening
avr/libraries/SoftwareSerial/src/SoftwareSerial.h:114
FunctionisLowerCase
Checks for a lower-case character.
avr/cores/MCUdude_corefiles/WCharacter.h:97
FunctionisPrintable
Checks for any printable character including space.
avr/cores/MCUdude_corefiles/WCharacter.h:104
FunctionisPunct
Checks for any printable character which is not a space or an alphanumeric character.
avr/cores/MCUdude_corefiles/WCharacter.h:112
FunctionisSpace
Checks for white-space characters. For the avr-libc library, these are: space, formfeed ('\f'), newline ('\n'), carriage return ('\r'), horizontal tab
avr/cores/MCUdude_corefiles/WCharacter.h:121
FunctionisUpperCase
Checks for an uppercase letter.
avr/cores/MCUdude_corefiles/WCharacter.h:128
FunctionisWhitespace
Checks for a blank character, that is, a space or a tab.
avr/cores/MCUdude_corefiles/WCharacter.h:69
Functionisr
avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp:222
MethodlastIndexOf
avr/cores/MCUdude_corefiles/WString.cpp:581
Methodlength
Standards requires this to be the item after the last valid entry. The returned pointer is invalid.
avr/libraries/EEPROM/src/EEPROM.h:127
Methodlisten
This function sets the current object as the "listening" one and returns true if it replaces another
avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp:89
Functionmain
avr/cores/MCUdude_corefiles/main.cpp:33
Functionmain
main program starts here */
avr/bootloaders/optiboot_flash/optiboot_flash.c:473
FunctionmakeWord
avr/cores/MCUdude_corefiles/WMath.cpp:57
Functionmap
avr/cores/MCUdude_corefiles/WMath.cpp:52
Functionmax
avr/cores/MCUdude_corefiles/Arduino.h:319
Methodmove
avr/cores/MCUdude_corefiles/WString.cpp:194
FunctionnoPullup
avr/cores/MCUdude_corefiles/wiring_extras.h:31
MethodnotUsingInterrupt
avr/libraries/SPI/src/SPI.cpp:160
MethodnotUsingInterrupt
avr/libraries/SPI1/src/SPI1.cpp:160
Functionnothing
avr/cores/MCUdude_corefiles/WInterrupts.c:34
Methodnumbits
avr/cores/MCUdude_corefiles/CDC.cpp:269
MethodonReceive
sets function called on slave write
avr/libraries/Wire/src/Wire.cpp:369
MethodonRequest
sets function called on slave read
avr/libraries/Wire/src/Wire.cpp:375
MethodonRequestService
behind the scenes function that is called when data is requested
avr/libraries/Wire/src/Wire.cpp:354
Methodoperator !=
avr/cores/MCUdude_corefiles/WString.h:144
Methodoperator ==
avr/cores/MCUdude_corefiles/WString.h:142
Functionoperator delete
avr/cores/MCUdude_corefiles/new.cpp:87
Functionoperator delete[]
avr/cores/MCUdude_corefiles/new.cpp:90
Functionoperator new[]
avr/cores/MCUdude_corefiles/new.cpp:55
Methodoperator!=
Iterator functionality.
avr/libraries/EEPROM/src/EEPROM.h:96
Methodoperator*
Access/read members.
avr/libraries/EEPROM/src/EEPROM.h:42
Methodoperator*
avr/libraries/EEPROM/src/EEPROM.h:97
Methodoperator++
Postfix increment/decrement **/
avr/libraries/EEPROM/src/EEPROM.h:66
Methodoperator++
avr/libraries/EEPROM/src/EEPROM.h:102
Methodoperator--
avr/libraries/EEPROM/src/EEPROM.h:71
Methodoperator--
avr/libraries/EEPROM/src/EEPROM.h:103
Methodoperator<
avr/cores/MCUdude_corefiles/WString.cpp:457
Methodoperator<=
avr/cores/MCUdude_corefiles/WString.cpp:467
Methodoperator==
avr/cores/MCUdude_corefiles/IPAddress.h:55
Methodoperator==
avr/cores/MCUdude_corefiles/IPAddress.cpp:98
Methodoperator>
avr/cores/MCUdude_corefiles/WString.cpp:462
Methodoperator>=
avr/cores/MCUdude_corefiles/WString.cpp:472
Methodoperator[]
Basic user access methods.
avr/libraries/EEPROM/src/EEPROM.h:119
Methodoperator[]
avr/cores/MCUdude_corefiles/WString.cpp:532
Methodoperator[]
Overloaded index operator to allow getting and setting individual octets of the address
avr/cores/MCUdude_corefiles/IPAddress.h:59
Methodoverflow
avr/libraries/SoftwareSerial/src/SoftwareSerial.h:116
Methodparitytype
avr/cores/MCUdude_corefiles/CDC.cpp:265
← previousnext →201–300 of 431, ranked by callers