📄 shell.h
字号:
// This file is part of MANTIS OS, Operating System for Nymph.// See http://mantis.cs.colorado.edu///// Copyright (C) 2003 University of Colorado, Boulder//// This program is free software; you can redistribute it and/or// modify it under the terms of the GNU General Public License// as published by the Free Software Foundation; either version 2// of the License, or (at your option) any later version.//// This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.//// You should have received a copy of the GNU General Public License// (See http://www.gnu.org/copyleft/gpl.html)// along with this program; if not, write to the Free Software// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,// USA, or send email to help@mantis.cs.colorado.edu.#ifndef __SHELL_H_#define __SHELL_H_#include <inttypes.h>typedef void (*update_callback)(int current_page, int total_pages);typedef void (*find_node_callback)(int retries);int8_t shell_load_image(char *arg, update_callback update_func);int8_t shell_start_execution(char *arg);int8_t shell_read_flash(char *arg);int shell_find_node (find_node_callback find_callback_func);int shell_find_loader (find_node_callback find_callback_func);void shell_send_byte (uint8_t byte_to_send);void shell_send_restart();void shell_send_to_node (char * string_to_send);void shell_load_bootloader();enum { NODE_NOT_FOUND, BOOTLOADER_MODE, APP_MODE, SREC_READ_ERROR, COMMAND_MATCH, COMMAND_MISS, NODE_RESTARTED, LOAD_COMMAND_FAILURE, PAGE_PACKET_FAILURE, SUCCESS};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -