pinsh8051/pinsh.h

18 lines
281 B
C
Raw Permalink Normal View History

2024-05-26 15:35:24 +02:00
#ifndef PINSH_H_
#define PINSH_H_
#define PINSH_BUF_SIZE 32
extern void (*pinsh_output_chr)(char);
void pinsh_welcome_msg();
void pinsh_exec(const char *cmd);
extern uint8_t pinsh_buf[PINSH_BUF_SIZE];
extern volatile int pinsh_buf_pos;
void pinsh_uart_irq_handler();
#endif