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

@ -45,7 +45,7 @@
* TCB1 | 1
* TCB2 | 2
* TCB3 | 3
* TCB4 | 4
* TCB4 | 4
* RTC | 5
*/
@ -84,8 +84,8 @@ For other frequency values, update clock_config.h with your own settings */
/* Hook function related definitions. */
#define configUSE_IDLE_HOOK 1
#define configUSE_TICK_HOOK 1
#define configCHECK_FOR_STACK_OVERFLOW 1
#define configUSE_MALLOC_FAILED_HOOK 1
#define configCHECK_FOR_STACK_OVERFLOW 0
#define configUSE_MALLOC_FAILED_HOOK 0
#define configUSE_DAEMON_TASK_STARTUP_HOOK 0
/* Run time and task stats gathering related definitions. */
@ -127,6 +127,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 */