From 833339e1c64c5021195137db339012edecb44a39 Mon Sep 17 00:00:00 2001 From: Grissiom Date: Tue, 6 Jan 2015 11:03:01 +0800 Subject: [PATCH] lpc43xx: output a newline in the header file Some compiler is brain-damaged that it will yeild a warning for headers not ended with a newline. Yes, I mean you, Keil. --- bsp/lpc43xx/bin2C.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bsp/lpc43xx/bin2C.py b/bsp/lpc43xx/bin2C.py index bc76419b0..ea7bf2959 100644 --- a/bsp/lpc43xx/bin2C.py +++ b/bsp/lpc43xx/bin2C.py @@ -11,3 +11,4 @@ for i in fi.read(): fo.write('0x%02x, ' % ord(i)) if idx % 16 == 0: fo.write('\n') +fo.write('\n') -- GitLab