This commit is contained in:
Rens Pastoor
2025-05-27 22:41:46 +02:00
parent d141296aea
commit 11b391b8a1
416 changed files with 25232 additions and 0 deletions

22
C/Adidas/shared/channel.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef CHANNEL_H
#define CHANNEL_H
#include <stdint.h>
/*!
* Initialiase the channel module
*/
void channel_init();
/*!
* Randomly invert one the bits of the input 'value' parameter
*
* @param value: A byte
*
* @return: The input 'value' where on of the bits is randomly inverted
*/
uint8_t channel_change_one_random_bit(uint8_t value);
#endif