USB EPROM/Flash Programmer
Public Member Functions | List of all members
Serial Class Reference

Pico Serial Communication Class. More...

#include <serial.hpp>

Public Member Functions

 Serial ()
 Constructor. More...
 
int getChar (uint32_t us=0)
 Gets a single character. More...
 
size_t getBuf (void *buf, size_t len, uint32_t us)
 Gets a buffer. More...
 
std::string getStr (uint32_t us=0)
 Gets a string (blocks until enter/0x0A). More...
 
int getInt (uint base=10, uint32_t us=0)
 Gets an integer value (blocks until enter/0x0A). More...
 
float getFloat (uint32_t us=0)
 Gets a float point value (blocks until enter/0x0A). More...
 
void putChar (char c, bool flush=false)
 Puts a single character. More...
 
void putBuf (const void *src, size_t len, bool flush=false)
 Puts a buffer of data. More...
 
void putStr (const std::string &src, bool flush=false)
 Puts a string. More...
 
void putInt (int src, uint base=10, uint digits=0, char fill=' ', bool flush=false)
 Puts an integer value. More...
 
void putFloat (float src, uint precision=3, bool flush=false)
 Puts a float point value. More...
 
std::ostream & out ()
 Returns the output stream object. More...
 
std::istream & in ()
 Returns the input stream object. More...
 

Detailed Description

Pico Serial Communication Class.

The purpose of this class is to handle the serial communication (via UART or via USB-CDC).

Constructor & Destructor Documentation

◆ Serial()

Serial ( )

Constructor.

Member Function Documentation

◆ getChar()

int getChar ( uint32_t  us = 0)

Gets a single character.

Parameters
usTimeout, in microseconds. Default is zero (returns immediately).
Returns
A single char, or PICO_ERROR_TIMEOUT if timeout is reached.

◆ getBuf()

size_t getBuf ( void *  buf,
size_t  len,
uint32_t  us 
)

Gets a buffer.

Parameters
bufPointer to buffer that receives the data.
lenSize of buffer, in bytes.
usTimeout, in microseconds. Default is zero (returns immediately).
Returns
Number of bytes read, or zero if timeout is reached.

◆ getStr()

std::string getStr ( uint32_t  us = 0)

Gets a string (blocks until enter/0x0A).

Parameters
usTimeout, in microseconds. Default is zero (wait for a 0x0A).
Returns
The string.

◆ getInt()

int getInt ( uint  base = 10,
uint32_t  us = 0 
)

Gets an integer value (blocks until enter/0x0A).

Parameters
baseNumerical base. Default is 10 (decimal).
usTimeout, in microseconds. Default is zero (wait for a 0x0A).
Returns
The numeric value.

◆ getFloat()

float getFloat ( uint32_t  us = 0)

Gets a float point value (blocks until enter/0x0A).

Parameters
usTimeout, in microseconds. Default is zero (wait for a 0x0A).
Returns
The numeric value.

◆ putChar()

void putChar ( char  c,
bool  flush = false 
)

Puts a single character.

Parameters
cCharacter to write.
flushIf true, flushes the output. Default is false.

◆ putBuf()

void putBuf ( const void *  src,
size_t  len,
bool  flush = false 
)

Puts a buffer of data.

Parameters
srcPointer to buffer to write.
lenSize of buffer, in bytes.
flushIf true, flushes the output. Default is false.

◆ putStr()

void putStr ( const std::string &  src,
bool  flush = false 
)

Puts a string.

Parameters
srcString to write.
flushIf true, flushes the output. Default is false.

◆ putInt()

void putInt ( int  src,
uint  base = 10,
uint  digits = 0,
char  fill = ' ',
bool  flush = false 
)

Puts an integer value.

Parameters
srcNumeric value to write.
baseNumerical base. Default is 10 (decimal).
digitsNumber of min digits to format (left pad with fill). Default is zero.
fillFill character. Default is space.
flushIf true, flushes the output. Default is false.

◆ putFloat()

void putFloat ( float  src,
uint  precision = 3,
bool  flush = false 
)

Puts a float point value.

Parameters
srcNumeric value to write.
precisionNumber of decimals (precision). Default is 3.
flushIf true, flushes the output. Default is false.

◆ out()

std::ostream & out ( )

Returns the output stream object.

Returns
Reference to the output stream object.

◆ in()

std::istream & in ( )

Returns the input stream object.

Returns
Reference to the input stream object.

The documentation for this class was generated from the following files: