]> git.donarmstrong.com Git - tmk_firmware.git/commitdiff
Add compile conditional for assembler(xprintf)
authortmk <nobody@nowhere>
Mon, 15 Jul 2013 14:32:14 +0000 (23:32 +0900)
committertmk <nobody@nowhere>
Mon, 15 Jul 2013 14:32:14 +0000 (23:32 +0900)
converter/adb_usb/config.h

index 9aa3489da71fd5853127a96befbf3aad21b7640d..7e2372edff0a3d0860a383b529e0309e5e5faa11 100644 (file)
@@ -58,10 +58,12 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 //#define ADB_PSW_BIT     1       // optional
 
 /* key combination for command */
+#ifndef __ASSEMBLER__
 #include "adb.h"
 #include "matrix.h"
 #define IS_COMMAND() ( \
     matrix_is_on(MATRIX_ROW(ADB_POWER), MATRIX_COL(ADB_POWER)) \
 )
+#endif
 
 #endif