Newer
Older
barebox / commands / msleep.c
@Holger Schurig Holger Schurig on 14 May 2014 1 KB commands: harmonize in-barebox documentation
/*
 * msleep.c - delay execution for n milliseconds
 *
 * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, 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 <common.h>
#include <command.h>
#include <clock.h>

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