- no bit fields, please!

The memory savings are not worth the negative side effects.
This commit is contained in:
Christoph Oelckers 2020-10-13 23:56:30 +02:00
parent 129aa864dd
commit bca29ed402

View file

@ -73,8 +73,8 @@ kChannelMax = 4096,
struct RXBUCKET
{
unsigned int index : 13;
unsigned int type : 3;
uint16_t index;
uint8_t type;
};
extern RXBUCKET rxBucket[];
extern unsigned short bucketHead[];