This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void plneni_pameti_pokus(char maximum) | |
{ | |
uint16_t doba_nabehu; | |
unsigned char ct = 0; | |
uint16_t *mem; | |
mem = malloc(BUFFER_SIZE); | |
for(doba_nabehu = 0; doba_nabehu < BUFFER_SIZE; doba_nabehu++){ //pocet_vzorku glob prom - const |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// blik.h********************************************************************************** | |
#ifndef BLIK_H_INCLUDED | |
#define BLIK_H_INCLUDED | |
#include <stdint.h> | |
extern void blik(void); | |
void morse (uint8_t *i); | |
#endif // BLIK_H_INCLUDED |