diff options
| author | tmk <nobody@nowhere> | 2013-07-15 23:32:14 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2013-07-15 23:32:14 +0900 |
| commit | 86623f57247c92242751ceae4cb291e7f3d19540 (patch) | |
| tree | 41a0d02face60c2adccd15bf7bd89d2f3e4b89fb | |
| parent | f4c69652c17e97241e2f7b7f22ab438e9a3ceb0a (diff) | |
| download | qmk_firmware-86623f57247c92242751ceae4cb291e7f3d19540.tar.gz qmk_firmware-86623f57247c92242751ceae4cb291e7f3d19540.zip | |
Add compile conditional for assembler(xprintf)
| -rw-r--r-- | converter/adb_usb/config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/converter/adb_usb/config.h b/converter/adb_usb/config.h index 9aa3489da..7e2372edf 100644 --- a/converter/adb_usb/config.h +++ b/converter/adb_usb/config.h | |||
| @@ -58,10 +58,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 58 | //#define ADB_PSW_BIT 1 // optional | 58 | //#define ADB_PSW_BIT 1 // optional |
| 59 | 59 | ||
| 60 | /* key combination for command */ | 60 | /* key combination for command */ |
| 61 | #ifndef __ASSEMBLER__ | ||
| 61 | #include "adb.h" | 62 | #include "adb.h" |
| 62 | #include "matrix.h" | 63 | #include "matrix.h" |
| 63 | #define IS_COMMAND() ( \ | 64 | #define IS_COMMAND() ( \ |
| 64 | matrix_is_on(MATRIX_ROW(ADB_POWER), MATRIX_COL(ADB_POWER)) \ | 65 | matrix_is_on(MATRIX_ROW(ADB_POWER), MATRIX_COL(ADB_POWER)) \ |
| 65 | ) | 66 | ) |
| 67 | #endif | ||
| 66 | 68 | ||
| 67 | #endif | 69 | #endif |
