MCUXpresso RT1010 SHELL例子学习
导入SHELL例子,要点击左下的DEBUG进入调试模式,全速运行,使用Tera Terminal调试,波特率115200。
可以使用命令行来打开和关闭一个LED灯。
代码如下:
/*
* Copyright (c) 2016, Freescale Semiconductor, Inc.
* Copyright 2016-2017 NXP
*
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "pin_mux.h"
#include "clock_config.h"
#include "board.h"
#include "fsl_debug_console.h"
#include "fsl_component_serial_manager.h"
#include "fsl_shell.h"
/*******************************************************************************
* Definitions
******************************************************************************/
#define LED_NUMBERS 1U
#define LED_1_INIT() USER_LED_INIT(LOGIC_LED_OFF)
#define LED_1_ON() USER_LED_ON()
#define LED_1_OFF() USER_LED_OFF()
#define SHELL_Printf PRINTF
/*******************************************************************************
* Prototypes
******************************************************************************/
void Led_Init(void);
static