Update previous AVR ATmega0 and AVR Dx projecs + addition of equivalent projects in MPLAB.X and IAR (#180)

* Updated indentation in AVR_ATMega4809_Atmel_Studio and AVR_Dx_Atmel_Studio projects, plus small fixes in their readme files.

* Added AVR_ATMega4809_IAR, AVR_ATMega4809_MPLAB.X, AVR_Dx_IAR and AVR_Dx_MPLAB.X demo projects.

* Removed build artefacts and added .gitignore files in AVR_ATMega4809_MPLAB.X and AVR_Dx_MPLAB.X projects.

Co-authored-by: Yuhui Zheng <10982575+yuhui-zheng@users.noreply.github.com>
This commit is contained in:
m17336 2020-08-06 22:37:08 +03:00 committed by GitHub
parent f32a0647c8
commit d4bf09480a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
103 changed files with 24974 additions and 1368 deletions

View file

@ -44,7 +44,7 @@
* TCB0 | 0
* TCB1 | 1
* TCB2 | 2
* TCB3 | 3
* TCB3 | 3
* RTC | 4
*/
@ -97,9 +97,9 @@ For other frequency values, update clock_config.h with your own settings. */
/* Software timer related definitions. */
#define configUSE_TIMERS 1
#define configTIMER_TASK_PRIORITY (configMAX_PRIORITIES - 1)
#define configTIMER_TASK_PRIORITY ( configMAX_PRIORITIES - 1 )
#define configTIMER_QUEUE_LENGTH 5
#define configTIMER_TASK_STACK_DEPTH (configMINIMAL_STACK_SIZE * 2)
#define configTIMER_TASK_STACK_DEPTH ( configMINIMAL_STACK_SIZE * 2 )
/* Define to trap errors during development. */
//#define configASSERT( x ) if( ( x ) == 0 ) { asm volatile ("cli"); while(1){ asm volatile ("BREAK"); } }
@ -125,7 +125,6 @@ For other frequency values, update clock_config.h with your own settings. */
#define pdMS_TO_TICKS(xTimeInMs) ((TickType_t)(((uint32_t)(xTimeInMs) * (uint32_t)configTICK_RATE_HZ) / (uint32_t)1000))
#define recmuRECURSIVE_MUTEX_TEST_TASK_STACK_SIZE (configMINIMAL_STACK_SIZE) * 2
#define recmuRECURSIVE_MUTEX_TEST_TASK_STACK_SIZE ( configMINIMAL_STACK_SIZE * 2 )
#endif /* FREERTOS_CONFIG_H */