mirror of
https://github.com/grblHAL/core.git
synced 2026-09-22 11:29:17 +08:00
Fixed include file issue causing macro warnings for drivers built with the Arduino platform.
This commit is contained in:
@@ -13,9 +13,9 @@ It has been written to complement grblHAL and has features such as proper keyboa
|
||||
|
||||
---
|
||||
|
||||
Latest build date is 20230125, see the [changelog](changelog.md) for details.
|
||||
__NOTE:__ A settings reset will be performed on an update. Backup and restore of settings is recommended.
|
||||
__IMPORTANT!__ A new setting has been introduced for ganged axes motors in version 20211121.
|
||||
Latest build date is 20230126, see the [changelog](changelog.md) for details.
|
||||
__NOTE:__ A settings reset will be performed on an update of builds earlier than 20230125. Backup and restore of settings is recommended.
|
||||
__IMPORTANT!__ A new setting has been introduced for ganged axes motors in build 20211121.
|
||||
I have only bench tested this for a couple of drivers, correct function should be verified after updating by those who have more than three motors configured.
|
||||
More details in the [changelog](changelog.md).
|
||||
|
||||
@@ -87,4 +87,4 @@ List of Supported G-Codes:
|
||||
Some [plugins](https://github.com/grblHAL/plugins) implements additional M-codes.
|
||||
|
||||
---
|
||||
2023-01-25
|
||||
2023-01-26
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
## grblHAL changelog
|
||||
|
||||
<a name="20230126"/>Build 20230126
|
||||
|
||||
Core:
|
||||
|
||||
* Fixed include file issue causing macro warnings for drivers built with the Arduino platform.
|
||||
|
||||
Web Builder:
|
||||
|
||||
* Added macros plugin to capable drivers, removed resizable planner buffer option as this is now always enabled and added option for rotary axes feed rate fix.
|
||||
|
||||
---
|
||||
|
||||
<a name="20230125"/>Build 20230125
|
||||
|
||||
Core:
|
||||
|
||||
@@ -30,6 +30,10 @@
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#ifdef ARDUINO
|
||||
#include <Arduino.h>
|
||||
#endif
|
||||
|
||||
#include "config.h"
|
||||
|
||||
// Grbl versioning system
|
||||
@@ -38,7 +42,7 @@
|
||||
#else
|
||||
#define GRBL_VERSION "1.1f"
|
||||
#endif
|
||||
#define GRBL_BUILD 20230125
|
||||
#define GRBL_BUILD 20230126
|
||||
|
||||
#define GRBL_URL "https://github.com/grblHAL"
|
||||
|
||||
@@ -62,10 +66,6 @@
|
||||
#define ISR_FUNC(fn) fn
|
||||
#endif
|
||||
|
||||
#ifdef ARDUINO
|
||||
#include <Arduino.h>
|
||||
#endif
|
||||
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user