Skip to content

Commit

Permalink
move bb drivers to subfolder
Browse files Browse the repository at this point in the history
  • Loading branch information
bkleiner committed Jul 25, 2024
1 parent 03e33e4 commit e958ac6
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/driver/spi_m25p16.c → src/driver/blackbox/m25p16.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "driver/spi_m25p16.h"
#include "driver/blackbox/m25p16.h"

#include <string.h>

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/driver/spi_sdcard.c → src/driver/blackbox/sdcard.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "driver/spi_sdcard.h"
#include "driver/blackbox/sdcard.h"

#include <string.h>

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/io/blackbox_device_flash.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "blackbox_device_flash.h"

#include "core/project.h"
#include "driver/spi_m25p16.h"
#include "driver/blackbox/m25p16.h"
#include "util/util.h"

#define FILES_SECTOR_OFFSET blackbox_bounds.sector_size
Expand Down
2 changes: 1 addition & 1 deletion src/io/blackbox_device_sdcard.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <string.h>

#include "core/project.h"
#include "driver/spi_sdcard.h"
#include "driver/blackbox/sdcard.h"

#define FLUSH_INTERVAL 8
#define FILES_SECTOR_OFFSET 1
Expand Down

0 comments on commit e958ac6

Please sign in to comment.