newrpl/firmware/sys/fsystem/fssleep.c
2020-01-21 18:34:44 -05:00

23 lines
387 B
C

/*
* Copyright (c) 2014-2015, Claudio Lapilli and the newRPL Team
* All rights reserved.
* This file is released under the 3-clause BSD license.
* See the file LICENSE.txt that shipped with this distribution.
*/
#include "fsyspriv.h"
#ifndef CONFIG_NO_FSYSTEM
// SAVE POWER BY STOPPING SD CARD CLOCK
void FSSleep()
{
SDPowerDown();
}
void FSWakeUp()
{
SDPowerUp();
}
#endif