/* * msleep.c - delay execution for n milliseconds * * Copyright (c) 2012 Steffen Trumtrar , Pengutronix * * derived from commands/sleep.c * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * 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. * */ #include #include #include static int do_msleep(int argc, char *argv[]) { ulong delay; if (argc != 2) return COMMAND_ERROR_USAGE; delay = simple_strtoul(argv[1], NULL, 10); mdelay(delay); return 0; } BAREBOX_CMD_START(msleep) .cmd = do_msleep, BAREBOX_CMD_DESC("delay execution for n milli-seconds") BAREBOX_CMD_OPTS("MILLISECONDS") BAREBOX_CMD_GROUP(CMD_GRP_SCRIPT) BAREBOX_CMD_END