summaryrefslogtreecommitdiff
path: root/Demo/AVR_ATMega323_WinAVR/serial/serial.c
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2006-08-11 10:42:06 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2006-08-11 10:42:06 +0000
commit027fc6f12f5e84661d5405bb5b92bb03bdb3df23 (patch)
tree8655226c7e2af1ad0a6736647dc82226d6ff58d2 /Demo/AVR_ATMega323_WinAVR/serial/serial.c
parent7017bab5f1044db7972f55e99a9214ad902d9b9a (diff)
downloadfreertos-027fc6f12f5e84661d5405bb5b92bb03bdb3df23.tar.gz
freertos-027fc6f12f5e84661d5405bb5b92bb03bdb3df23.tar.bz2
freertos-027fc6f12f5e84661d5405bb5b92bb03bdb3df23.tar.xz
Updated to V4.0.5
+ Introduced API function xTaskResumeFromISR(). Same functionality as xTaskResume(), but can be called from within an interrupt service routine. + Optimised vListInsert() in the case when the wake time is the maximum tick count value. + Bug fix: The 'value' of the event list item is updated when the priority of a task is changed. Previously only the priority of the TCB itself was changed. + vTaskPrioritySet() and vTaskResume() no longer use the event list item. This has not been necessary since V4.0.1 when the xMissedYield handling was added. + Lowered the PCLK setting on the ARM9 STR9 demo from 96MHz to 48MHz. + When ending the scheduler - do not try to attempt a context switch when deleting the current task. + SAM7X EMAC drivers: Corrected the Rx frame length mask when obtaining the length from the rx descriptor. git-svn-id: https://freertos.svn.sourceforge.net/svnroot/freertos/trunk@24 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'Demo/AVR_ATMega323_WinAVR/serial/serial.c')
-rw-r--r--Demo/AVR_ATMega323_WinAVR/serial/serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/AVR_ATMega323_WinAVR/serial/serial.c b/Demo/AVR_ATMega323_WinAVR/serial/serial.c
index f3ce6a30..8a1cffb5 100644
--- a/Demo/AVR_ATMega323_WinAVR/serial/serial.c
+++ b/Demo/AVR_ATMega323_WinAVR/serial/serial.c
@@ -1,5 +1,5 @@
/*
- FreeRTOS.org V4.0.4 - Copyright (C) 2003-2006 Richard Barry.
+ FreeRTOS.org V4.0.5 - Copyright (C) 2003-2006 Richard Barry.
This file is part of the FreeRTOS.org distribution.