Files
gaoyang3513 a345df017b [修改] 增加freeRTOS
1. 版本FreeRTOSv202212.01,命名为kernel;
2023-05-06 16:43:01 +00:00

22 lines
394 B
C

/*
* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright (c) 2010-2020, The Regents of the University of California
* (Regents). All Rights Reserved.
*/
#ifndef __HTIF_H__
#define __HTIF_H__
#include <stdint.h>
void htif_putc(char ch);
int htif_getc(void);
int htif_system_reset_check(uint32_t type, uint32_t reason);
void htif_system_reset(uint32_t type, uint32_t reason);
#endif