Edited Version of mbed-rtos so that it actually works.
Dependents: NervousPuppySprintOne NervousPuppySprint2602
Fork of mbed-rtos by
Revision 62:3b7770ca2984, committed 2015-01-12
- Comitter:
- SeanDoyle
- Date:
- Mon Jan 12 19:30:32 2015 +0000
- Parent:
- 61:9387d4c49609
- Child:
- 63:f535c468d377
- Commit message:
- Fixed mbed-rtos compilation issues.
Changed in this revision
--- a/rtos/Mutex.cpp Mon Jan 12 08:15:33 2015 +0000
+++ b/rtos/Mutex.cpp Mon Jan 12 19:30:32 2015 +0000
@@ -22,7 +22,7 @@
#include "Mutex.h"
#include <string.h>
-#include "mbed_error.h"
+#include "error.h"
namespace rtos {
--- a/rtos/RtosTimer.cpp Mon Jan 12 08:15:33 2015 +0000
+++ b/rtos/RtosTimer.cpp Mon Jan 12 19:30:32 2015 +0000
@@ -24,7 +24,7 @@
#include <string.h>
#include "cmsis_os.h"
-#include "mbed_error.h"
+#include "error.h"
namespace rtos {
--- a/rtos/Thread.cpp Mon Jan 12 08:15:33 2015 +0000
+++ b/rtos/Thread.cpp Mon Jan 12 19:30:32 2015 +0000
@@ -21,7 +21,7 @@
*/
#include "Thread.h"
-#include "mbed_error.h"
+#include "error.h"
namespace rtos {
--- a/rtx/TARGET_CORTEX_M/RTX_CM_lib.h Mon Jan 12 08:15:33 2015 +0000 +++ b/rtx/TARGET_CORTEX_M/RTX_CM_lib.h Mon Jan 12 19:30:32 2015 +0000 @@ -31,7 +31,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. *---------------------------------------------------------------------------*/ -#include "mbed_error.h" +#include "error.h" #if defined (__CC_ARM) #pragma O3
