mirror of
https://github.com/gillham/logic_analyzer.git
synced 2026-05-01 23:53:02 +03:00
Fix check for ATmega328
The define is __AVR_ATmega328P__ (note the 'P')
This commit is contained in:
@@ -154,7 +154,7 @@ void debugdump(void);
|
|||||||
#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__)
|
#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__)
|
||||||
#define DEBUG_CAPTURE_SIZE 7168
|
#define DEBUG_CAPTURE_SIZE 7168
|
||||||
#define CAPTURE_SIZE 7168
|
#define CAPTURE_SIZE 7168
|
||||||
#elif defined(__AVR_ATmega328__)
|
#elif defined(__AVR_ATmega328P__)
|
||||||
#define DEBUG_CAPTURE_SIZE 1024
|
#define DEBUG_CAPTURE_SIZE 1024
|
||||||
#define CAPTURE_SIZE 1024
|
#define CAPTURE_SIZE 1024
|
||||||
#else
|
#else
|
||||||
@@ -784,7 +784,7 @@ void get_metadata() {
|
|||||||
/* 7168 bytes */
|
/* 7168 bytes */
|
||||||
Serial.print(0x1C, BYTE);
|
Serial.print(0x1C, BYTE);
|
||||||
Serial.print(0x00, BYTE);
|
Serial.print(0x00, BYTE);
|
||||||
#elif defined(__AVR_ATmega328__)
|
#elif defined(__AVR_ATmega328P__)
|
||||||
/* 1024 bytes */
|
/* 1024 bytes */
|
||||||
Serial.print(0x04, BYTE);
|
Serial.print(0x04, BYTE);
|
||||||
Serial.print(0x00, BYTE);
|
Serial.print(0x00, BYTE);
|
||||||
|
|||||||
Reference in New Issue
Block a user