Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
pathfinding.cpp
00001 #include "pathfinding.h" 00002 00003 /* 00004 Initialise object. 00005 Call initators for any local objects. 00006 */ 00007 Pathfinding::Pathfinding(osPriority priority, int memory){ 00008 pathfinding_thread = new Thread(priority, memory); 00009 } 00010 00011 /* 00012 Infinite loop that will be run. like a main loop. 00013 */ 00014 void Pathfinding::run() { 00015 while (true) { 00016 00017 } 00018 } 00019 00020 /* 00021 Called by main at the start of operation to start the thread running. 00022 */ 00023 void Pathfinding::start() { 00024 pathfinding_thread->start(callback(this, &Pathfinding::run)); 00025 }
Generated on Fri Jul 15 2022 23:39:31 by
1.7.2