Formatted code (#1007)

* Updated style

* Updated files

* fixed new line

* Updated spacing

* File fix WIP

* Updated to clang 13

* updated comment style

* Removed old comment code
This commit is contained in:
jLynx 2023-05-19 08:16:05 +12:00 committed by GitHub
parent 7aca7ce74d
commit 033c4e9a5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
599 changed files with 70746 additions and 66896 deletions

View file

@ -30,38 +30,37 @@
namespace serializer {
enum parity_enum : uint8_t {
NONE = 0,
EVEN = 1,
ODD = 2
NONE = 0,
EVEN = 1,
ODD = 2
};
enum order_enum : uint8_t {
MSB_FIRST = 0,
LSB_FIRST = 1
MSB_FIRST = 0,
LSB_FIRST = 1
};
struct serial_format_t {
uint8_t data_bits;
parity_enum parity;
uint8_t stop_bits;
order_enum bit_order;
uint8_t data_bits;
parity_enum parity;
uint8_t stop_bits;
order_enum bit_order;
constexpr serial_format_t() :
data_bits(7),
parity(parity_enum::EVEN),
stop_bits(1),
bit_order(order_enum::LSB_FIRST)
{
}
constexpr serial_format_t()
: data_bits(7),
parity(parity_enum::EVEN),
stop_bits(1),
bit_order(order_enum::LSB_FIRST) {
}
};
size_t symbol_count(const serial_format_t& serial_format);
/*{ "7-Even-1 R", "7E1", 7, EVEN, 1, false, false },
{ "7E1 LUT ", "7Ea", 7, EVEN, 1, true, true },
{ "7-Odd-1 ", "7o1", 7, ODD, 1, true, false },
{ "8-Even-0 ", "8E0", 8, EVEN, 1, true, false }*/
/*{ "7-Even-1 R", "7E1", 7, EVEN, 1, false, false },
{ "7E1 LUT ", "7Ea", 7, EVEN, 1, true, true },
{ "7-Odd-1 ", "7o1", 7, ODD, 1, true, false },
{ "8-Even-0 ", "8E0", 8, EVEN, 1, true, false }*/
} /* namespace serializer */
#endif/*__SERIALIZER_H__*/
#endif /*__SERIALIZER_H__*/