From 1077b5fd1e2e255bdc0feb140b7a804963c74853 Mon Sep 17 00:00:00 2001 From: Stefan `Sec` Zehl Date: Sat, 30 Jul 2011 15:30:35 +0200 Subject: [PATCH] Fix filename to be the same in read && write --- firmware/funk/openbeacon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/funk/openbeacon.c b/firmware/funk/openbeacon.c index 599af98..8fdf946 100644 --- a/firmware/funk/openbeacon.c +++ b/firmware/funk/openbeacon.c @@ -32,7 +32,7 @@ void openbeaconSave(uint32_t s) BYTE buf[4]; UINT readbytes; - if( f_open(&file, "beacon", FA_OPEN_ALWAYS|FA_WRITE) ) + if( f_open(&file, "beacon.cfg", FA_OPEN_ALWAYS|FA_WRITE) ) return; uint32touint8p(s, buf);