Ethernet for the NUCLEO STM32F746 Board Testprogram uses DHCP and NTP to set the clock. At the moment there are dependencies to the used compiler. It works with the online compiler
Dependencies: F7_Ethernet mbed
mbed-rtos/rtos/Semaphore.cpp@2:bcf5290d42bf, 2016-06-23 (annotated)
- Committer:
- DieterGraef
- Date:
- Thu Jun 23 09:07:47 2016 +0000
- Revision:
- 2:bcf5290d42bf
- Parent:
- 0:f9b6112278fe
Corrected MAC issue
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
DieterGraef | 0:f9b6112278fe | 1 | /* mbed Microcontroller Library |
DieterGraef | 0:f9b6112278fe | 2 | * Copyright (c) 2006-2012 ARM Limited |
DieterGraef | 0:f9b6112278fe | 3 | * |
DieterGraef | 0:f9b6112278fe | 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
DieterGraef | 0:f9b6112278fe | 5 | * of this software and associated documentation files (the "Software"), to deal |
DieterGraef | 0:f9b6112278fe | 6 | * in the Software without restriction, including without limitation the rights |
DieterGraef | 0:f9b6112278fe | 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
DieterGraef | 0:f9b6112278fe | 8 | * copies of the Software, and to permit persons to whom the Software is |
DieterGraef | 0:f9b6112278fe | 9 | * furnished to do so, subject to the following conditions: |
DieterGraef | 0:f9b6112278fe | 10 | * |
DieterGraef | 0:f9b6112278fe | 11 | * The above copyright notice and this permission notice shall be included in |
DieterGraef | 0:f9b6112278fe | 12 | * all copies or substantial portions of the Software. |
DieterGraef | 0:f9b6112278fe | 13 | * |
DieterGraef | 0:f9b6112278fe | 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
DieterGraef | 0:f9b6112278fe | 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
DieterGraef | 0:f9b6112278fe | 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
DieterGraef | 0:f9b6112278fe | 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
DieterGraef | 0:f9b6112278fe | 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
DieterGraef | 0:f9b6112278fe | 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
DieterGraef | 0:f9b6112278fe | 20 | * SOFTWARE. |
DieterGraef | 0:f9b6112278fe | 21 | */ |
DieterGraef | 0:f9b6112278fe | 22 | #include "Semaphore.h" |
DieterGraef | 0:f9b6112278fe | 23 | |
DieterGraef | 0:f9b6112278fe | 24 | #include <string.h> |
DieterGraef | 0:f9b6112278fe | 25 | |
DieterGraef | 0:f9b6112278fe | 26 | namespace rtos { |
DieterGraef | 0:f9b6112278fe | 27 | |
DieterGraef | 0:f9b6112278fe | 28 | Semaphore::Semaphore(int32_t count) { |
DieterGraef | 0:f9b6112278fe | 29 | #ifdef CMSIS_OS_RTX |
DieterGraef | 0:f9b6112278fe | 30 | memset(_semaphore_data, 0, sizeof(_semaphore_data)); |
DieterGraef | 0:f9b6112278fe | 31 | _osSemaphoreDef.semaphore = _semaphore_data; |
DieterGraef | 0:f9b6112278fe | 32 | #endif |
DieterGraef | 0:f9b6112278fe | 33 | _osSemaphoreId = osSemaphoreCreate(&_osSemaphoreDef, count); |
DieterGraef | 0:f9b6112278fe | 34 | } |
DieterGraef | 0:f9b6112278fe | 35 | |
DieterGraef | 0:f9b6112278fe | 36 | int32_t Semaphore::wait(uint32_t millisec) { |
DieterGraef | 0:f9b6112278fe | 37 | return osSemaphoreWait(_osSemaphoreId, millisec); |
DieterGraef | 0:f9b6112278fe | 38 | } |
DieterGraef | 0:f9b6112278fe | 39 | |
DieterGraef | 0:f9b6112278fe | 40 | osStatus Semaphore::release(void) { |
DieterGraef | 0:f9b6112278fe | 41 | return osSemaphoreRelease(_osSemaphoreId); |
DieterGraef | 0:f9b6112278fe | 42 | } |
DieterGraef | 0:f9b6112278fe | 43 | |
DieterGraef | 0:f9b6112278fe | 44 | Semaphore::~Semaphore() { |
DieterGraef | 0:f9b6112278fe | 45 | osSemaphoreDelete(_osSemaphoreId); |
DieterGraef | 0:f9b6112278fe | 46 | } |
DieterGraef | 0:f9b6112278fe | 47 | |
DieterGraef | 0:f9b6112278fe | 48 | } |