fix typos

This commit is contained in:
Terje Io
2025-10-02 15:41:10 +02:00
parent e37572fe02
commit 7db744f04a
3 changed files with 6 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ Plugins:
Drivers:
* Simulator: Fix for crash on hard limits triggered, tuned code, ref [#16](https://github.com/grblHAL/Simulator/issues/16).
* Simulator: fix for crash on hard limits triggered, tuned code, ref issue [#16](https://github.com/grblHAL/Simulator/issues/16).
> [!NOTE]
> Hard limit events may not result in alarm 1 as they should due to a compiler bug /(not handling volatiles correctly/). At least the Web Builder Windows version is affected.

View File

@@ -19,13 +19,13 @@
along with grblHAL. If not, see <http://www.gnu.org/licenses/>.
*/
#include "grbl/vfs.h"
#include "grbl/stream.h"
#include "grbl/nuts_bolts.h"
#include <stdlib.h>
#include <string.h>
#include "vfs.h"
#include "stream.h"
#include "nuts_bolts.h"
struct fs_device {
io_stream_t io_stream;
stream_claim_ptr open;

1
vfs.h
View File

@@ -26,6 +26,7 @@
#define GRBL_VFS
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdlib.h>