mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
shell/sc_rtc: remove rtc init command
This commit is contained in:
parent
e2c358ee48
commit
012264cb0e
@ -139,7 +139,6 @@ static int _rtc_usage(void)
|
||||
{
|
||||
puts("usage: rtc <command> [arguments]");
|
||||
puts("commands:");
|
||||
puts("\tinit\t\tinitialize the interface");
|
||||
puts("\tpoweron\t\tpower the interface on");
|
||||
puts("\tpoweroff\tpower the interface off");
|
||||
puts("\tclearalarm\tdeactivate the current alarm");
|
||||
@ -156,9 +155,6 @@ int _rtc_handler(int argc, char **argv)
|
||||
_rtc_usage();
|
||||
return 1;
|
||||
}
|
||||
else if (strncmp(argv[1], "init", 4) == 0) {
|
||||
rtc_init();
|
||||
}
|
||||
else if (strncmp(argv[1], "poweron", 7) == 0) {
|
||||
rtc_poweron();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user