Merge pull request #84 from Yorkshire-Jack/master
Minor bugfixes for avr-gcc compiler detection and for USE_COMMAND_TAGS
| | |
| | | #if defined(__AVR__) |
| | | #include <stdlib.h> |
| | | #define HAVE_DTOSTRE 1 |
| | | #undef HAVE_STRTOF |
| | | #define HAVE_STRTOF 0 |
| | | #endif |
| | | |
| | | /* default values */ |
| | |
| | | |
| | | typedef struct _scpi_command_t scpi_command_t; |
| | | |
| | | #define SCPI_CMD_LIST_END {NULL, NULL, 0} |
| | | #if USE_COMMAND_TAGS |
| | | #define SCPI_CMD_LIST_END {NULL, NULL, 0} |
| | | #else |
| | | #define SCPI_CMD_LIST_END {NULL, NULL} |
| | | #endif |
| | | |
| | | |
| | | /* scpi interface */ |
| | | typedef struct _scpi_t scpi_t; |