From 6035a17b2becc788c0daaf440deb6cc37d364029 Mon Sep 17 00:00:00 2001 From: Leo C Date: Mon, 8 Sep 2014 19:54:08 +0200 Subject: Programmable Z180 clock, clock command --- avr/command_tbl.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'avr/command_tbl.c') diff --git a/avr/command_tbl.c b/avr/command_tbl.c index 6e8a91b..c721d53 100644 --- a/avr/command_tbl.c +++ b/avr/command_tbl.c @@ -18,6 +18,7 @@ extern command_ret_t do_dump_mem(cmd_tbl_t *, int, int, char * const []); extern command_ret_t do_eep_cp(cmd_tbl_t *, int, int, char * const []); extern command_ret_t do_busreq_pulse(cmd_tbl_t *, int, int, char * const []); extern command_ret_t do_date(cmd_tbl_t *, int, int, char * const []); +extern command_ret_t do_clock(cmd_tbl_t *, int, int, char * const []); cmd_tbl_t cmd_tbl[] = { @@ -119,6 +120,11 @@ CMD_TBL_ITEM( "Perform RESET of the CPU", "" ), +CMD_TBL_ITEM( + clock, 2, 0, do_clock, + "Set or get CPU frequency", + "" +), CMD_TBL_ITEM( md, 3, 1, do_mem_md, -- cgit v1.2.3