diff tests/cp_ping.py @ 3:e410832c3280

Issue of avr-ld. - For some unknown reason, avr-ld can not handle multiple objects well. - Fixed by compile all source at once.
author Thinker K.F. Li <thinker@branda.to>
date Sun, 22 Feb 2009 01:40:36 +0800
parents f7c60e525801
children
line wrap: on
line diff
--- a/tests/cp_ping.py	Sat Feb 21 23:06:50 2009 +0800
+++ b/tests/cp_ping.py	Sun Feb 22 01:40:36 2009 +0800
@@ -1,7 +1,6 @@
 import struct
 
 CP_CMD_PING = 1
-CP_CMD_PONG = 2
 
 def csum_add(csum, c):
     return (((csum << 3) | (csum >> 5)) ^ c) & 0xff