From 61f2bd1bc3502bc56ac05b635d3a0bf6c3555d13 Mon Sep 17 00:00:00 2001 From: Bertus Kruger Date: Wed, 13 Mar 2013 18:41:52 +1300 Subject: [PATCH] Update planner.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed inline from all functions. If this is really needed is there another way that we can get around using it? (The Arduino IDE does not recognize it)  --- planner.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/planner.c b/planner.c index 846e403..7fc3e96 100644 --- a/planner.c +++ b/planner.c @@ -307,14 +307,14 @@ void plan_init() memset(&pl, 0, sizeof(pl)); // Clear planner struct } -inline void plan_discard_current_block() +void plan_discard_current_block() { if (block_buffer_head != block_buffer_tail) { block_buffer_tail = next_block_index( block_buffer_tail ); } } -inline block_t *plan_get_current_block() +block_t *plan_get_current_block() { if (block_buffer_head == block_buffer_tail) { return(NULL); } return(&block_buffer[block_buffer_tail]);