#include "Serial.h" namespace Upp { // get a list of standard baud rates Index const &Serial::GetStandardBaudRates(void) { static Index v; if(v.IsEmpty()) { for(int i = 0; i < stdBaudsCount; i++) v << stdBauds[i]; } return v; } } // END_UPP_NAMESPACE