-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
resync board_defs.py and fix chelper import (#84)
- Loading branch information
Showing
2 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,14 @@ | |
# Copyright (C) 2021 Eric Callahan <[email protected]> | ||
# | ||
# This file may be distributed under the terms of the GNU GPLv3 license. | ||
import chelper | ||
import os | ||
import sys | ||
|
||
KLIPPER_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../")) | ||
sys.path.append(os.path.join(KLIPPER_DIR, "klippy")) | ||
|
||
import chelper # noqa: E402 | ||
|
||
DEST_LIB = "fatfs.so" | ||
FATFS_DIR = os.path.join(KLIPPER_DIR, "lib/fatfs") | ||
FATFS_SRC = ["ff.c", "ffsystem.c", "ffunicode.c"] | ||
|