You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
280 B

#ifndef __DEBUG_H
#define __DEBUG_H
#include <stdint.h>
#include <stdio.h>
#include "ringbuf_small.h"
#define DEBUGCHARS 254
extern FILE mystdout;
ringbuf_t rb;
char dbuf[DEBUGCHARS];
void dbg_init();
int16_t dbg_getchar();
uint8_t dbg_putchar(char c, FILE* stream);
#endif