Browse Source

Merge pull request #157 from majekw/stk_sw_version

Use STK_SW_MINOR/STK_SW_MAJOR instead of hardcoded 0x81/0x82 values.
Bill Westfield 8 years ago
parent
commit
810221178a

+ 2 - 2
optiboot/bootloaders/optiboot/optiboot.c

@@ -535,9 +535,9 @@ int main(void) {
        * Send optiboot version as "SW version"
        * Note that the references to memory are optimized away.
        */
-      if (which == 0x82) {
+      if (which == STK_SW_MINOR) {
 	  putch(optiboot_version & 0xFF);
-      } else if (which == 0x81) {
+      } else if (which == STK_SW_MAJOR) {
 	  putch(optiboot_version >> 8);
       } else {
 	/*

+ 2 - 0
optiboot/bootloaders/optiboot/stk500.h

@@ -42,3 +42,5 @@
 #define STK_READ_OSCCAL     0x76  // 'v'
 #define STK_READ_FUSE_EXT   0x77  // 'w'
 #define STK_READ_OSCCAL_EXT 0x78  // 'x'
+#define STK_SW_MAJOR        0x81  // ' '
+#define STK_SW_MINOR        0x82  // ' '