not working!!! A test of semaphore passing from Alexander Dean's FreeRTOS workshop 2016

Dependencies:   FreeRTOS_V8_2_1 mbed

Committer:
uhclem
Date:
Fri Apr 22 18:48:57 2016 +0000
Revision:
0:34537a2d87bb
Not working! led1 stays lit.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
uhclem 0:34537a2d87bb 1 /* mbed Microcontroller Library
uhclem 0:34537a2d87bb 2 * Copyright (c) 2006-2013 ARM Limited
uhclem 0:34537a2d87bb 3 *
uhclem 0:34537a2d87bb 4 * Licensed under the Apache License, Version 2.0 (the "License");
uhclem 0:34537a2d87bb 5 * you may not use this file except in compliance with the License.
uhclem 0:34537a2d87bb 6 * You may obtain a copy of the License at
uhclem 0:34537a2d87bb 7 *
uhclem 0:34537a2d87bb 8 * http://www.apache.org/licenses/LICENSE-2.0
uhclem 0:34537a2d87bb 9 *
uhclem 0:34537a2d87bb 10 * Unless required by applicable law or agreed to in writing, software
uhclem 0:34537a2d87bb 11 * distributed under the License is distributed on an "AS IS" BASIS,
uhclem 0:34537a2d87bb 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
uhclem 0:34537a2d87bb 13 * See the License for the specific language governing permissions and
uhclem 0:34537a2d87bb 14 * limitations under the License.
uhclem 0:34537a2d87bb 15 */
uhclem 0:34537a2d87bb 16 #ifndef myBoardInit_H
uhclem 0:34537a2d87bb 17 #define myBoardInit_H
uhclem 0:34537a2d87bb 18
uhclem 0:34537a2d87bb 19
uhclem 0:34537a2d87bb 20 #define MBED_BOARD_LPC1768 10
uhclem 0:34537a2d87bb 21 #define ST_MBED_NUCLEOF411 20
uhclem 0:34537a2d87bb 22 #define EA_MBED_LPC4088 30
uhclem 0:34537a2d87bb 23 #define ST_MBED_NUCLEOF103 40
uhclem 0:34537a2d87bb 24 #define ST_MBED_NUCLEOF401 50
uhclem 0:34537a2d87bb 25 #define Seeed_Arch_Max 60
uhclem 0:34537a2d87bb 26 #define LPCXpresso4337 70
uhclem 0:34537a2d87bb 27 #define ST_MBED_NUCLEOL476RG 80//add new board here
uhclem 0:34537a2d87bb 28
uhclem 0:34537a2d87bb 29 #define THIS_BOARD ST_MBED_NUCLEOL476RG
uhclem 0:34537a2d87bb 30 //#define THIS_BOARD ST_MBED_NUCLEOF411
uhclem 0:34537a2d87bb 31 //#define THIS_BOARD EA_MBED_LPC4088
uhclem 0:34537a2d87bb 32 //#define THIS_BOARD ST_MBED_NUCLEOF103
uhclem 0:34537a2d87bb 33 //#define THIS_BOARD ST_MBED_NUCLEOF401
uhclem 0:34537a2d87bb 34 //#define THIS_BOARD Seeed_Arch_Max
uhclem 0:34537a2d87bb 35 //#define THIS_BOARD LPCXpresso4337
uhclem 0:34537a2d87bb 36
uhclem 0:34537a2d87bb 37
uhclem 0:34537a2d87bb 38
uhclem 0:34537a2d87bb 39 #endif