Other Parts Discussed in Thread: HALCOGEN
HALCoGen Version 3.05.00 is available now for download from www.ti.com/tool/halcogen.
Note:
1) Auto Update feature on HALCoGen ver 3.04.00 will not notify the availability of 3.05.00. Please download it from Link www.ti.com/tool/halcogen
Major Update:
1) Green Hills Support is added for TMS570LS31x, TMS570LS12x, TMS570LS04x, RM4x family of devices.
Work Arounds for some Known Issues:
- When using ARM tools under sys_common.h, Macro #define FIQ __fiq has to be replaced with #define FIQ __irq
- Flash EEPROM Wait state are always configured for Max device frequency. Workaround: Use /*user code*/ below EEPROM Wait state configuration in system.c file and provide the necessary wait states.
-
when <device>_FreeRTOS is choosen with "Dispatch Mode" being selected in Interrupt tab, user can write their own dispatch routine or use the below function for the default isrStub. Place it in os_portasm.asm file.
;-------------------------------------------------------------------------------
; isr stub
.def _isrStub
.asmfunc
_isrStub
portSAVE_CONTEXT
ldr r0, isrVector
ldr r0, [r0]
blx r0
portRESTORE_CONTEXTisrVector .word 0xFFFFFE70
.endasmfunc
;-------------------------------------------------------------------------------
Please refer the release note for detailed information..
Thanks!