RELEASE NOTES - MISCELLANEOUS:

Known Issues:
------------

1) A C++ Project using Device Initialization, will throw an error as shown below:

              "Link Error: Symbol MCU_init_Fv is not defined"


The above error can be eliminated by using the work around:

main.cpp file:

Existing Declaration:
--------------------

		void MCU_Init(void); 

Work Around Declaration:
-----------------------

		extern "C" { 
			void MCU_Init(void); 
		} 



