2 FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.
5 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
7 This file is part of the FreeRTOS distribution.
9 FreeRTOS is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License (version 2) as published by the
11 Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.
13 ***************************************************************************
14 >>! NOTE: The modification to the GPL is included to allow you to !<<
15 >>! distribute a combined work that includes FreeRTOS without being !<<
16 >>! obliged to provide the source code for proprietary components !<<
17 >>! outside of the FreeRTOS kernel. !<<
18 ***************************************************************************
20 FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
21 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
22 FOR A PARTICULAR PURPOSE. Full license text is available on the following
23 link: http://www.freertos.org/a00114.html
25 ***************************************************************************
27 * FreeRTOS provides completely free yet professionally developed, *
28 * robust, strictly quality controlled, supported, and cross *
29 * platform software that is more than just the market leader, it *
30 * is the industry's de facto standard. *
32 * Help yourself get started quickly while simultaneously helping *
33 * to support the FreeRTOS project by purchasing a FreeRTOS *
34 * tutorial book, reference manual, or both: *
35 * http://www.FreeRTOS.org/Documentation *
37 ***************************************************************************
39 http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading
40 the FAQ page "My application does not run, what could be wrong?". Have you
41 defined configASSERT()?
43 http://www.FreeRTOS.org/support - In return for receiving this top quality
44 embedded software for free we request you assist our global community by
45 participating in the support forum.
47 http://www.FreeRTOS.org/training - Investing in training allows your team to
48 be as productive as possible as early as possible. Now you can receive
49 FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers
50 Ltd, and the world's leading authority on the world's leading RTOS.
52 http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
53 including FreeRTOS+Trace - an indispensable productivity tool, a DOS
54 compatible FAT file system, and our tiny thread aware UDP/IP stack.
56 http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.
57 Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.
59 http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High
60 Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS
61 licenses offer ticketed support, indemnification and commercial middleware.
63 http://www.SafeRTOS.com - High Integrity Systems also provide a safety
64 engineered and independently SIL3 certified version for use in safety and
65 mission critical applications that require provable dependability.
70 /*-----------------------------------------------------------
71 * Simple parallel port IO routines.
72 *-----------------------------------------------------------*/
74 /* Kernel includes. */
78 /* Fujitsu drivers/libraries. */
79 #include "mb9bf506n.h"
80 #include "system_mb9bf50x.h"
82 /* Only the LEDs on one of the two seven segment displays are used. */
83 #define partstMAX_LEDS 8
85 /* The LEDs are controlled by bits 8 to 15 of the IO port. */
86 #define partstLED_0_OFFSET 8
88 /*-----------------------------------------------------------*/
90 void vParTestInitialise( void )
92 const unsigned short usGPIOState = 0xFF00U;
94 /* Analog inputs are not used on the LED outputs. */
95 FM3_GPIO->ADE = 0x00FF;
97 /* LED seg1 to GPIO output (P18->P1F). */
98 FM3_GPIO->DDR1 = 0xFF00;
99 FM3_GPIO->PFR1 = 0x0000;
101 /* LED seg2 to GPIO output (P30->P3F). */
102 FM3_GPIO->DDR3 = 0xFF00;
103 FM3_GPIO->PFR3 = 0x0000;
105 /* Start with all LEDs off. */
106 FM3_GPIO->PDOR3 = usGPIOState;
107 FM3_GPIO->PDOR1 = usGPIOState;
109 /*-----------------------------------------------------------*/
111 void vParTestSetLED( unsigned portBASE_TYPE uxLED, signed portBASE_TYPE xValue )
113 if( uxLED < partstMAX_LEDS )
115 /* A critical section is used as the LEDs are also accessed from an
117 taskENTER_CRITICAL();
119 if( xValue == pdTRUE )
121 FM3_GPIO->PDOR3 &= ~( 1UL << ( uxLED + partstLED_0_OFFSET ) );
125 FM3_GPIO->PDOR3 |= ( 1UL << ( uxLED + partstLED_0_OFFSET ) );
131 /*-----------------------------------------------------------*/
133 void vParTestSetLEDFromISR( unsigned portBASE_TYPE uxLED, signed portBASE_TYPE xValue )
135 unsigned portBASE_TYPE uxInterruptFlags;
137 uxInterruptFlags = portSET_INTERRUPT_MASK_FROM_ISR();
139 if( uxLED < partstMAX_LEDS )
141 if( xValue == pdTRUE )
143 FM3_GPIO->PDOR3 &= ~( 1UL << ( uxLED + partstLED_0_OFFSET ) );
147 FM3_GPIO->PDOR3 |= ( 1UL << ( uxLED + partstLED_0_OFFSET ) );
151 portCLEAR_INTERRUPT_MASK_FROM_ISR( uxInterruptFlags );
153 /*-----------------------------------------------------------*/
155 void vParTestToggleLED( unsigned portBASE_TYPE uxLED )
157 if( uxLED < partstMAX_LEDS )
159 /* A critical section is used as the LEDs are also accessed from an
161 taskENTER_CRITICAL();
163 if( ( FM3_GPIO->PDOR3 & ( 1UL << ( uxLED + partstLED_0_OFFSET ) ) ) != 0UL )
165 FM3_GPIO->PDOR3 &= ~( 1UL << ( uxLED + partstLED_0_OFFSET ) );
169 FM3_GPIO->PDOR3 |= ( 1UL << ( uxLED + partstLED_0_OFFSET ) );
175 /*-----------------------------------------------------------*/
177 long lParTestGetLEDState( unsigned long ulLED )
179 long lReturn = pdFALSE;
181 if( ulLED < partstMAX_LEDS )
183 taskENTER_CRITICAL();
185 if( ( FM3_GPIO->PDOR3 & ( 1UL << ( ulLED + partstLED_0_OFFSET ) ) ) == 0UL )
195 /*-----------------------------------------------------------*/