2015-08-20 23:39:08 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* This program 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 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program 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; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
#ifndef __STRING_FORMAT_H__
|
|
|
|
#define __STRING_FORMAT_H__
|
2015-08-20 23:39:08 -04:00
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
#include <cstdint>
|
|
|
|
#include <string>
|
2015-08-20 23:39:08 -04:00
|
|
|
|
2018-01-09 16:12:19 -05:00
|
|
|
#include "file.hpp"
|
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
// BARF! rtc::RTC is leaking everywhere.
|
2015-08-20 23:39:08 -04:00
|
|
|
#include "lpc43xx_cpp.hpp"
|
|
|
|
using namespace lpc43xx;
|
|
|
|
|
2017-08-17 07:56:47 -04:00
|
|
|
enum TimeFormat {
|
|
|
|
YMDHMS = 0,
|
|
|
|
HMS = 1,
|
|
|
|
HM = 2
|
|
|
|
};
|
|
|
|
|
2017-11-02 13:11:26 -04:00
|
|
|
const char unit_prefix[7] { 'n', 'u', 'm', 0, 'k', 'M', 'G' };
|
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
// TODO: Allow l=0 to not fill/justify? Already using this way in ui_spectrum.hpp...
|
2016-12-05 06:56:41 -05:00
|
|
|
std::string to_string_bin(const uint32_t n, const uint8_t l = 0);
|
2018-05-15 18:35:30 -04:00
|
|
|
std::string to_string_dec_uint(const uint32_t n, const int32_t l = 0, const char fill = ' ');
|
2016-01-31 03:34:24 -05:00
|
|
|
std::string to_string_dec_int(const int32_t n, const int32_t l = 0, const char fill = 0);
|
2021-06-23 18:52:15 -04:00
|
|
|
std::string to_string_decimal(float decimal, int8_t precision);
|
|
|
|
|
2016-11-30 01:41:55 -05:00
|
|
|
std::string to_string_hex(const uint64_t n, const int32_t l = 0);
|
2017-05-01 05:42:09 -04:00
|
|
|
std::string to_string_hex_array(uint8_t * const array, const int32_t l = 0);
|
2015-08-20 23:39:08 -04:00
|
|
|
|
2017-05-18 16:56:55 -04:00
|
|
|
std::string to_string_short_freq(const uint64_t f);
|
2017-12-10 23:14:54 -05:00
|
|
|
std::string to_string_time_ms(const uint32_t ms);
|
2017-04-24 13:15:57 -04:00
|
|
|
|
2017-08-17 07:56:47 -04:00
|
|
|
std::string to_string_datetime(const rtc::RTC& value, const TimeFormat format = YMDHMS);
|
2016-01-31 03:34:24 -05:00
|
|
|
std::string to_string_timestamp(const rtc::RTC& value);
|
2018-01-09 16:12:19 -05:00
|
|
|
std::string to_string_FAT_timestamp(const FATTimestamp& timestamp);
|
2015-08-20 23:39:08 -04:00
|
|
|
|
2017-11-02 13:11:26 -04:00
|
|
|
std::string unit_auto_scale(double n, const uint32_t base_nano, uint32_t precision);
|
2020-08-24 16:31:27 -04:00
|
|
|
double get_decimals(double num, int16_t mult, bool round = false); //euquiq added
|
2016-01-31 03:34:24 -05:00
|
|
|
#endif/*__STRING_FORMAT_H__*/
|