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.
14 lines
290 B
14 lines
290 B
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include "stm32f4xx.h"
|
|
#include "cmd.h"
|
|
|
|
static int do_reset(CMD_TBL_S *s, zcHandle cl, int argc, char *argv[])
|
|
{
|
|
NVIC_SystemReset();
|
|
return 0;
|
|
}
|
|
|
|
CON_CMD(reset, 0, do_reset, "reset system");
|
|
|