Update planner.c

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)
pull/1/head
Bertus Kruger 2013-03-13 18:41:52 +13:00
rodzic f04489530a
commit 61f2bd1bc3
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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]);