Files
T2-start-2025/C/Adidas/shared/channel.h
Rens Pastoor 11b391b8a1 sync
2025-05-27 22:41:46 +02:00

23 lines
359 B
C

#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