Attention is currently required from: laforge.
4 comments:
Patchset:
sorry, some late comments that were stranded in draft lands
File include/osmocom/core/soft_uart.h:
Patch Set #3, Line 38: OSMO_SUART_F_BREAK = (1 << 2),
(it is sometimes useful to define the bit positions instead of the bitmask. Like
enum foo {
FOO_ZERO = 0,
FOO_ONE = 1,
FOO_TWO = 2,
};
and use it like
if (flags & (1 << FOO_TWO)) ...
(with a macro maybe)
because that allows math on the bit position that i had to use once and can't remember now =)
was it to iterate bits, or calculate used nr of bits...?
Anyway, just saying, if FOO_FIVE == 0x10, it's not so trivial to calculate that back to a 5.)
Patch Set #3, Line 52: stop bots
a stop bot, is that a traffic light? =)
File src/core/soft_uart.c:
Patch Set #3, Line 4: * (C) 2022 by Harald Welte <laforge@gnumonks.org>
2022-2023?
(I'm slightly unclear, is this patch a collaboration of laforge and fixeria?)
To view, visit change 30763. To unsubscribe, or for help writing mail filters, visit settings.