Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

NIOS II FreeRTOS not run

Posted by lomielectronics on June 12, 2017

Hi everyone, I'm trying to run FreeRTOS on a Nios 2 processor without success. I'm using Quartus Prime v16.1, and my hardware layer is composed by: 1 Nios 2 gen 2 CPU; 1 JTAG 1 UART 1 timer interval (named sys_clk) 1 onchip memory module 1 parallel led interface I generate the .sopcinfo thorugh QSYS and Quartus, then I create e new bsp from eclipse by using the altera HAL type. After that, I change ENHANCED interrupt with LEGACY one. Finally a new blank project was created on the previous generated bsp. Now the FreeRTOS release is copied inside the Eclipse project, all files are linked and compiled. I try to run a simple task by driving two leds, but the FreeRTOS is not running. All leds are fixed and the system seems freezed. Have you tryied to run FreeRTOS on Nios processor? Thank you.

[code]

include "uart.h"
include "alteraavalonpio_regs.h"

/* FreeRTOS */

include "FreeRTOS.h"
include "task.h"
include "queue.h"

bool UARTrxFLAG; char UARTrx; unsigned int delay; static unsigned int LEDctrl;

/* definizione funzioni */ static void prvSetupHardware( void ); static void prvLEDtask( void *pvParameters );

static void prvSetupHardware( void ) { LEDctrl = 0x01; }

int main() { prvSetupHardware(); IOWRALTERAAVALONPIODIRECTION(PIOLEDBASE, 0x1F); IOWRALTERAAVALONPIODATA(PIOLEDBASE, 0x00);

xTaskCreate(prvLEDtask, "LEDtask", 100, (void*) NULL, tskIDLE_PRIORITY + 1, NULL);

/* start scheduler */
vTaskStartScheduler();
/* infinite loop */
for( ;; );

}

static void prvLEDtask( void *pvParameters ) { for( ;; ) { LEDctrl ^= 0x03; IOWRALTERAAVALONPIODATA(PIOLEDBASE, LEDctrl); vTaskDelay(500 / portTICKPERIODMS); } }

/-----------------------------------------------------------/ void vApplicationStackOverflowHook( void ) { /* Look at pxCurrentTCB to see which task overflowed its stack. */ for( ;; ) { asm( "break" ); } }

/-----------------------------------------------------------/ void generalexception_handler( unsigned long ulCause, unsigned long ulStatus ) { /* This overrides the definition provided by the kernel. Other exceptions should be handled here. / for( ;; ) { asm( "break" ); } } /-----------------------------------------------------------*/ [/code]


NIOS II FreeRTOS not run

Posted by rtel on June 15, 2017

Sorry for the delay in replying -

Does the scheduler start? If you step through vPortStartScheduler() in the NIOS port layer, where do you end up.

Alternatively set the interrupt priorities such that you know which task will start first - which will be the highest priority task in the system (be careful configTIMERTASKPRIORITY is not set so the timer task has the highest priority). Then set a breakpoint on entry to the task that has the highest pririty. Does it ever get hit?


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner