Other Parts Discussed in Thread: HALCOGEN
Using Halcogen 4.02 with several developers (all on the same version), we noticed that halcogen will sometimes change the hex numbers stored in the <project>.dil file from upper to lower case, and vice versa. This isn't a huge issue, but it gets messy when you use a revision control system in a development environment where all changes must be reviewed. Here's a diff tool output from one version of code:
-DRIVER.SYSTEM.VAR.CORE_MPU_REGION_8_END_ADDRESS.VALUE=0x87ffffff
+DRIVER.SYSTEM.VAR.CORE_MPU_REGION_8_END_ADDRESS.VALUE=0x87FFFFFF
The same engineer made a change to an unrelated MPU region 35 days later, and Halcogen made this change (and others like it) in the <project>.dil file:
-DRIVER.SYSTEM.VAR.CORE_MPU_REGION_8_END_ADDRESS.VALUE=0x87FFFFFF
+DRIVER.SYSTEM.VAR.CORE_MPU_REGION_8_END_ADDRESS.VALUE=0x87ffffff
Any ideas about how to stop this from happening? Can you fix it?
Thanks,
Dan