mirror of
https://github.com/clockworkpi/DevTerm.git
synced 2025-12-12 18:28:50 +01:00
26 lines
436 B
C
26 lines
436 B
C
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#include <wiringPi.h>
|
|
|
|
#define SEP printf(" ");
|
|
// a is string, b is number
|
|
#define DEBUG(a,b) printf(a);SEP;printf("%d\n",b);
|
|
|
|
#define ALINE printf("\n");
|
|
|
|
#define PRINTF(...) { printf(__VA_ARGS__);fflush(stdout);}
|
|
|
|
void delayus(unsigned int _us);
|
|
|
|
uint8_t invert_bit(uint8_t a);
|
|
|
|
uint8_t bits_number(uint8_t n);
|
|
|
|
|
|
#endif
|