<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://e2e.ti.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>TI E2E Community</title><link>http://e2e.ti.com/default.aspx</link><description>&lt;p style="display:none;"&gt;blank&lt;/p&gt;</description><dc:language /><generator>6.x Production</generator><item><title>Forum Post: RE: #pragma DATA_SECTION and .cinit</title><link>http://e2e.ti.com/support/development_tools/compiler/f/343/p/188263/678131.aspx#678131</link><pubDate>Wed, 16 May 2012 19:48:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678131</guid><dc:creator>Georgem</dc:creator><description>&lt;p&gt;[quote user=&amp;quot;Paul P. (P Squared)&amp;quot;]The problem with marking the array const is that the values cannot be changed during runtime[/quote]&lt;/p&gt; &lt;p&gt;You made that point earlier. &amp;nbsp;Sorry I overlooked it.&lt;/p&gt; &lt;p&gt;[quote user=&amp;quot;Paul P. (P Squared)&amp;quot;]The real issue here is that moving data with a #pragma statement should prevent the data from ending up in the &amp;quot;.cinit&amp;quot; section[/quote]&lt;/p&gt; &lt;p&gt;Such is not the case. &amp;nbsp;The initialization records contained within .cinit can initialize data that resides in any uninitialized section, anywhere in memory. &amp;nbsp;This is the only mechanism the compiler has for initializing global variables. &amp;nbsp;Note .cinit is a read-only section. &amp;nbsp;Thus it can be placed in flash.&lt;/p&gt; &lt;p&gt;If you still want the initialization of your #pragma DATA_SECTION array to be done outside of .cinit, then I suggest this ... Do not initialize the array at all. &amp;nbsp;Define yet another array called &amp;quot;for_init&amp;quot;. &amp;nbsp;Mark it const, and use #pragma DATA_SECTION on it. &amp;nbsp;Initialize for_init with the initial values for your array. &amp;nbsp;In the link command file, place the for_init section in flash. &amp;nbsp;At the appropriate time, use memcpy to initialize your array with the contents of for_init.&lt;/p&gt; &lt;p&gt;Thanks and regards,&lt;/p&gt; &lt;p&gt;-George&lt;/p&gt;</description></item><item><title>Forum Post: RE: I2C system test mode</title><link>http://e2e.ti.com/support/omap/f/849/p/187713/678130.aspx#678130</link><pubDate>Wed, 16 May 2012 19:48:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678130</guid><dc:creator>Rodrigo Castaneda</dc:creator><description>&lt;p&gt;Hi Ketan:&lt;/p&gt; &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Just to clarify, If I understood you well you want to know if&amp;nbsp; I2C_DATA registry is been reseted for the short period of time in between transmission and reception. Am I right?&lt;/p&gt; &lt;p&gt;Regards,&lt;/p&gt; &lt;p&gt;Rodrigo&lt;/p&gt;</description></item><item><title>Forum Post: RE: hyperlink example hangs DSP core(s)</title><link>http://e2e.ti.com/support/dsp/c6000_multi-core_dsps/f/639/p/188673/678128.aspx#678128</link><pubDate>Wed, 16 May 2012 19:45:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678128</guid><dc:creator>Joel Keller</dc:creator><description>&lt;p&gt;Hi Chad,&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;I have a question related to this issue: &amp;nbsp;Hyperlink has two sides (local and remote), and the hyperlink peripheral has access to to remote side&amp;#39;s registers as well. &amp;nbsp;This can be used to configure both sides address translation units. &amp;nbsp; Is it also possible (and advisable) to reset the remote side peripheral using the remote registers, or will that cause problems?&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;In other words, can I assert and deassert reset on the remote side&amp;#39;s hyperlink peripheral? &amp;nbsp;Or will remote register access not work correctly when the remote side is in reset?&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;Thanks,&lt;/p&gt; &lt;p&gt;&lt;br /&gt;Joel&lt;/p&gt;</description></item><item><title>Forum Post: RE: How to address messages in SImpliciTI.</title><link>http://e2e.ti.com/support/low_power_rf/f/156/p/181461/678126.aspx#678126</link><pubDate>Wed, 16 May 2012 19:43:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678126</guid><dc:creator>Andy Yang</dc:creator><description>&lt;p&gt;[quote user=&amp;quot;lhend&amp;quot;]&lt;/p&gt; &lt;p&gt;You can have only one active Token at a time (Token is implemented as single variable in the stack - look for sLinkToken and sJoinToken in the stack code), but of course you can change it at run time by using SMPL_Ioctl() function with the object IOCTL_OBJ_TOKEN.&lt;/p&gt; &lt;p&gt;[/quote]&lt;/p&gt; &lt;p&gt;Unfortunately I can not find anywhere something like IOCTL_OBJ_TOKEN.&lt;br /&gt;I mean it is not declared anywhere.&lt;br /&gt;When I compiling code (I try to use this: http://yawing.googlecode.com/svn/trunk/yawing/Projects/Examples/Applications/main_AP_RE.c ) I get an error:&lt;br /&gt; identifier &amp;quot;IOCTL_OBJ_TOKEN&amp;quot; is undefined&lt;br /&gt;&lt;br /&gt;I found the function SMPL_Ioctl and indeed it has no support IOCTL_OBJ_TOKEN:&lt;/p&gt; &lt;p&gt;&amp;nbsp;[quote]&lt;/p&gt; &lt;p&gt;smplStatus_t SMPL_Ioctl(ioctlObject_t object, ioctlAction_t action, void *val)&lt;br /&gt;{&lt;br /&gt; smplStatus_t rc;&lt;br /&gt;&lt;br /&gt; switch (object)&lt;br /&gt; {&lt;br /&gt; case IOCTL_OBJ_CONNOBJ:&lt;br /&gt; rc = nwk_connectionControl(action, val);&lt;br /&gt; break;&lt;br /&gt;&lt;br /&gt; case IOCTL_OBJ_ADDR:&lt;br /&gt; if ((IOCTL_ACT_GET == action) || (IOCTL_ACT_SET == action))&lt;br /&gt; {&lt;br /&gt; rc = nwk_deviceAddress(action, (addr_t *)val);&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt; rc = SMPL_BAD_PARAM;&lt;br /&gt; }&lt;br /&gt; break;&lt;br /&gt;&lt;br /&gt; case IOCTL_OBJ_RAW_IO:&lt;br /&gt; if (IOCTL_ACT_WRITE == action)&lt;br /&gt; {&lt;br /&gt; rc = nwk_rawSend((ioctlRawSend_t *)val);&lt;br /&gt; }&lt;br /&gt; else if (IOCTL_ACT_READ == action)&lt;br /&gt; {&lt;br /&gt; rc = nwk_rawReceive((ioctlRawReceive_t *)val);&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt; rc = SMPL_BAD_PARAM;&lt;br /&gt; }&lt;br /&gt; break;&lt;br /&gt;&lt;br /&gt; case IOCTL_OBJ_RADIO:&lt;br /&gt; rc = nwk_radioControl(action, val);&lt;br /&gt; break;&lt;br /&gt;&lt;br /&gt;#ifdef ACCESS_POINT&lt;br /&gt; case IOCTL_OBJ_AP_JOIN:&lt;br /&gt; rc = nwk_joinContext(action);&lt;br /&gt; break;&lt;br /&gt;#endif&lt;br /&gt;#if defined( FREQUENCY_AGILITY )&lt;br /&gt; case IOCTL_OBJ_FREQ:&lt;br /&gt; rc = nwk_freqControl(action, val);&lt;br /&gt; break;&lt;br /&gt;#endif&lt;br /&gt; case IOCTL_OBJ_FWVER:&lt;br /&gt; if (IOCTL_ACT_GET == action)&lt;br /&gt; {&lt;br /&gt; memcpy(val, nwk_getFWVersion(), SMPL_FWVERSION_SIZE);&lt;br /&gt; rc = SMPL_SUCCESS;&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt; rc = SMPL_BAD_PARAM;&lt;br /&gt; }&lt;br /&gt; break;&lt;br /&gt;&lt;br /&gt; case IOCTL_OBJ_PROTOVER:&lt;br /&gt; if (IOCTL_ACT_GET == action)&lt;br /&gt; {&lt;br /&gt; *((uint8_t *)val) = nwk_getProtocolVersion();&lt;br /&gt; rc = SMPL_SUCCESS;&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt; rc = SMPL_BAD_PARAM;&lt;br /&gt; }&lt;br /&gt; break;&lt;br /&gt;&lt;br /&gt; case IOCTL_OBJ_CRYPTKEY:&lt;br /&gt; default:&lt;br /&gt; rc = SMPL_BAD_PARAM;&lt;br /&gt; break;&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; return rc;&lt;br /&gt;}&lt;/p&gt; &lt;p&gt;&amp;nbsp;[/quote]&lt;/p&gt; &lt;p&gt;Do I have inappropriate SimpliciTI code?&lt;/p&gt;</description></item><item><title>Forum Post: RE: RM48 - EMIF - Async Connection to FPGA - 3rd nWE pulse!</title><link>http://e2e.ti.com/support/microcontrollers/hercules/f/766/p/188446/678125.aspx#678125</link><pubDate>Wed, 16 May 2012 19:40:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678125</guid><dc:creator>Anthony F. Seely</dc:creator><description>&lt;p&gt;Stomp,&lt;/p&gt; &lt;p&gt;&lt;br /&gt;Hi, this might be something different then.&amp;nbsp;&amp;nbsp; I&amp;#39;m wondering about alignment for example.&amp;nbsp;&amp;nbsp; What address are you writing to ?&lt;/p&gt; &lt;p&gt;If you don&amp;#39;t mind posting the snippett of disassembly and the key CPU register values (i.e. the one being used for the pointer to EMIF memory, and the CPU instruction type that does the store (is it STR, STRB etc... ) this might give some clue.&lt;/p&gt; &lt;p&gt;Have to check on the errata... but sounds like you may have the workaround for the other issue already in your app.&lt;/p&gt; &lt;p&gt;Best Regards,&lt;/p&gt; &lt;p&gt;-Anthony&lt;/p&gt;</description></item><item><title>Forum Post: RE: Problem: Fatal Error[e72] ZIGNV_ADDRESS_SPACE</title><link>http://e2e.ti.com/support/low_power_rf/f/158/p/188894/678123.aspx#678123</link><pubDate>Wed, 16 May 2012 19:38:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678123</guid><dc:creator>Sam Elia</dc:creator><description>&lt;p&gt;This project compiled and functioned correctly in the past. &amp;nbsp;Try to compile it a year later with the new Z-stack and IAR and I get this error all of a sudden. &amp;nbsp;I even tried to use Zstack 2.4 linker and the old IAR device file for cc2530 but no luck.&lt;/p&gt; &lt;p&gt;From reading the forums, it is suggested to define MAKE_CRC_SHDW in the compiler options but this creates more errors.&lt;/p&gt; &lt;p&gt;Any help is appreciated!&lt;/p&gt;</description></item><item><title>Forum Post: RE: is qmssIpcBenchmark really a Monolithic qpend example?</title><link>http://e2e.ti.com/support/embedded/bios/f/355/p/188541/678122.aspx#678122</link><pubDate>Wed, 16 May 2012 19:38:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678122</guid><dc:creator>Justin32</dc:creator><description>&lt;p&gt;At the start of the example QMSS and CPPI are initialized (via qmss_init and cppi_init, respectively).&amp;nbsp; Then a chunk of memory is provided to the Qmss_insertMemoryRegion function for the descriptors that will be initialized and used by the IPC QMSS transport.&amp;nbsp; When the init code is complete Ipc_attach() is called.&amp;nbsp; Ipc_attach() calls the IPC QMSS transport initialization code.&amp;nbsp; The IPC QMSS transport initialization code that gets called is located in the TransportQmssSetup.c and TransportQmss.c files.&lt;/p&gt; &lt;p&gt;Ipc_attach() will invoke TransportQmssSetup_attach() which calls TransportQmss_create().&lt;/p&gt; &lt;p&gt;TransportQmss_create() invokes TransportQmss_Instance_init().&lt;/p&gt; &lt;p&gt;TransportQmss_Instance_init() is the &amp;quot;transport instance initialization code&amp;quot; i referred to before.&amp;nbsp; This code allocates queues, initializes the descriptors as monolithic, and sets up the interrupt mechanisms between the cores.&amp;nbsp; The monolithic descriptors that were initialized will be located in the memory block provided to Qmss_insertMemoryRegion prior to calling Ipc_attach().&lt;/p&gt; &lt;p&gt;Justin&lt;/p&gt;</description></item><item><title>Forum Post: RE: DAC1220 EVM Board Startup Difficulties</title><link>http://e2e.ti.com/support/data_converters/precision_data_converters/f/73/p/188381/678120.aspx#678120</link><pubDate>Wed, 16 May 2012 19:36:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678120</guid><dc:creator>Michael Lindemann</dc:creator><description>&lt;p&gt;In my first post I bolded the following: &lt;strong&gt;SDIEN: connected to ground&lt;/strong&gt; (only write to device) in hopes to call attention to it. Is this statement correct? When I see my output as it is and understanding that this is a tristated line to accomodate both data input and data output I wonder if my&amp;nbsp;present problem is related to this? What do you think/&lt;/p&gt;</description></item><item><title>Forum Post: RE: RS485 common mode disturbances</title><link>http://e2e.ti.com/support/interface/industrial_interface/f/142/p/186382/678119.aspx#678119</link><pubDate>Wed, 16 May 2012 19:35:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678119</guid><dc:creator>Julio Mano</dc:creator><description>&lt;p&gt;Hi Thomas,&lt;/p&gt; &lt;p&gt;I really appreciate your support. Considering the results of your last test, I presume the problem has been because of higher, eventual voltage peaks in the change to signal mode, when the impedance decreases. The problem is we cannot record the signal during say 1 whole day because the analyzer we are using, Fluke Scopemeter 225C, hasn&amp;#39;t got this function.&lt;/p&gt; &lt;p&gt;Thanks again for your kind help.&lt;/p&gt; &lt;p&gt;Julio.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Forum Post: DLP programming for control of micro-mirror array</title><link>http://e2e.ti.com/support/dlp__mems_micro-electro-mechanical_systems/f/94/t/188946.aspx</link><pubDate>Wed, 16 May 2012 19:35:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:188946</guid><dc:creator>Alonzo Espinoza</dc:creator><description>&lt;p&gt;Hello I am a new fresh student still trying to learn more about&amp;nbsp;programming&amp;nbsp;the DLP Pico 2.0 kit. &amp;nbsp;I have a beagleboard to communicate with the DLP projector and I am mostly interested in learning how to get the 8-bit monochrome setting, and&amp;nbsp;eventually&amp;nbsp;I will want to be able to manipulate the micro-mirror array. &amp;nbsp;I am hoping someone can lead me in the right direction or provide me with any guides online. &amp;nbsp;Please forgive me for my lack of searching the web, I have done some research and am reading through Programmer&amp;#39;s Guide and the Application report: Using the DLP Pico 2.0 kit for structured Light Applications.&lt;/p&gt; &lt;p&gt;Again any help would be most helpful and I thank you for your time and patience in&amp;nbsp;dealing&amp;nbsp;with a &amp;quot;newbie&amp;quot; like me.&lt;/p&gt; &lt;p&gt;-Alonzo Espinoza&lt;/p&gt;</description></item><item><title>Forum Post: RE: Output current during Disable mode -on REG102(NA-3.3V) LDO Regulator</title><link>http://e2e.ti.com/support/power_management/linear_regulators/f/321/p/188857/678118.aspx#678118</link><pubDate>Wed, 16 May 2012 19:33:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678118</guid><dc:creator>Chris Glaser</dc:creator><description>&lt;p&gt;The 10uA spec for the TPS60151 is shutdown current.&amp;nbsp; This is the current drawn by the IC when EN is low.&amp;nbsp; The corresponding spec for the Reg102 is ground pin current.&amp;nbsp; It is specified as 0.2uA max.&lt;/p&gt;</description></item><item><title>Forum Post: RE: Basic Getting Started guide</title><link>http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/p/187621/678117.aspx#678117</link><pubDate>Wed, 16 May 2012 19:32:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678117</guid><dc:creator>Lisa TI</dc:creator><description>&lt;p&gt;Hi David,&lt;/p&gt; &lt;p&gt;I am still waiting on feedback from a few more expert colleagues.&amp;nbsp; However in the mean time, do you think this thread I found might help ...&lt;/p&gt; &lt;p&gt;http://groups.google.com/group/pandaboard/browse_thread/thread/742d9a25743a0352?pli=1&lt;/p&gt; &lt;p&gt;Best Regards,&lt;br /&gt;Lisa&lt;/p&gt;</description></item><item><title>Forum Post: RE: CDC72010EVM</title><link>http://e2e.ti.com/support/clocks/f/48/p/188816/678116.aspx#678116</link><pubDate>Wed, 16 May 2012 19:31:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678116</guid><dc:creator>Matt Sunna</dc:creator><description>&lt;p&gt;Hi Wenjun,&lt;/p&gt; &lt;p&gt;VCXO typically have very tight tuning ranges, so it is important to buy a VCXO for the specific frequency desired. The CDCE72010 will tune the VCXO in order to lock to the input clock. The 491.52MHz VCXO is a very common frequency for clocking ADCs in wireless communications systems. This can be changed to 200MHz as mentioned by replacing the VCXO. The loop bandwidth sets the characteristics of the low-pass filter applied to the VCXO tuning voltage. A narrow loop bandwidth is helpful when the input reference clock needs to be cleaned as the output phase noise will be dominated by the VCXO. For a wide loop bandwidth, the output phase noise will be similar to that of the input, so this is okay when the input reference is a very clean clock.&amp;nbsp;&lt;/p&gt; &lt;p&gt;The attached GUI (not yet released to the web) has a new loop filter tool that helps to select components and simulate the loop filter.&lt;/p&gt; &lt;p&gt;Best regards,&lt;/p&gt; &lt;p&gt;Matt&lt;/p&gt; &lt;p&gt;(Please visit the site to view this file)&lt;/p&gt;</description></item><item><title>Forum Post: AND Gate Power - SN74AHC1G09</title><link>http://e2e.ti.com/support/logic/f/151/t/188945.aspx</link><pubDate>Wed, 16 May 2012 19:31:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:188945</guid><dc:creator>Anthony Berwin</dc:creator><description>&lt;p&gt;When Pin 5 (Vcc) of SN74AHC1G09 is low (or connected to ground), what happens when an external high is put on the inputs or the output?&lt;/p&gt; &lt;p&gt;Regards, Anthony&lt;/p&gt;</description></item><item><title>Forum Post: RE: error connecting to target</title><link>http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/p/187000/678113.aspx#678113</link><pubDate>Wed, 16 May 2012 19:30:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678113</guid><dc:creator>Lisa TI</dc:creator><description>&lt;p&gt;Hi Kaumil,&lt;/p&gt; &lt;p&gt;could you please send detailed information on your settings and the steps you take?&amp;nbsp; Is your project a CCS project? Could you double check you get no build errors.&amp;nbsp; What do you see if you go to Window-&amp;gt;Preferences-&amp;gt;Code Composer Studio-&amp;gt;Build-&amp;gt;Code Generation Tools&amp;nbsp; .... Could you send a screenshot?&amp;nbsp; &lt;/p&gt; &lt;p&gt;Are you simply trying an example application?&amp;nbsp; Which one? Do you get any error logs?&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;Best Regards,&lt;br /&gt;LIsa&lt;/p&gt;</description></item><item><title>Forum Post: BLE Central Role Connect Timeout / Power Consumption</title><link>http://e2e.ti.com/support/low_power_rf/f/538/t/188944.aspx</link><pubDate>Wed, 16 May 2012 19:26:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:188944</guid><dc:creator>Eng351</dc:creator><description>&lt;p&gt;Can anyone advise what the&amp;nbsp;&lt;span&gt;GAP_EstablishLinkReq() timeout is for a failed connection (peripheral out of range or not advertising)?&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;I am working on a data concentrator which is to poll several peripheral devices at a regular interval. The data concentrator is battery powered so power consumption must be kept to a minimum.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;Thanks&lt;/p&gt;</description></item><item><title>Forum Post: RE: Infinite loops after restarting or resetting a F28335</title><link>http://e2e.ti.com/support/microcontrollers/tms320c2000_32-bit_real-time_mcus/f/171/p/21561/678111.aspx#678111</link><pubDate>Wed, 16 May 2012 19:24:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678111</guid><dc:creator>Lori Heustess</dc:creator><description>&lt;p&gt;[quote user=&amp;quot;rmb_vector&amp;quot;]&lt;/p&gt; &lt;p&gt;i&amp;#39;m debugging/experiencing a similar problem on the 28335 EZDSP board where i end up in the same endlesss loop after executing a few calls in main()&lt;/p&gt; &lt;p&gt;&lt;span&gt;3FF3E6 &amp;nbsp; 761F &amp;nbsp; &amp;nbsp; &amp;nbsp;MOVW DP,#0x0180&lt;/span&gt;&lt;br /&gt;&lt;span&gt;3FF3E8 &amp;nbsp; 060C &amp;nbsp; &amp;nbsp; MOVL ACC,@12&lt;/span&gt;&lt;br /&gt;&lt;span&gt;3FF3E9 &amp;nbsp; ECFD &amp;nbsp; &amp;nbsp;SBF -3,EQ&lt;/span&gt;&lt;/p&gt; &lt;p&gt;i suspect this is some exception trap but i also don&amp;#39;t know where i can find what gets built into the BOOTROM or examine any boot ROM .map file. Perhaps the #180 is some error code indication for the user to know what caused the exception?&lt;/p&gt; &lt;p&gt;[/quote]&lt;/p&gt; &lt;p&gt;These are the same addresses as in the first post - which is in the eCAN loader.&amp;nbsp; Is your processor set to boot to eCAN?&lt;/p&gt; &lt;p&gt;[quote user=&amp;quot;rmb_vector&amp;quot;]Is there some documentation about the code that is built in the BOOTROM in this board that might shed some light on this?[/quote]&lt;/p&gt; &lt;p&gt;The boot ROM guide is here:&amp;nbsp;&lt;/p&gt; &lt;p&gt;The boot ROM source code along with map file etc is in controlSUITE (&lt;a href="http://www.ti.com/controlsuite"&gt;www.ti.com/controlsuite&lt;/a&gt;).&amp;nbsp; In the default install it will be here:&lt;/p&gt; &lt;p&gt;C:\ti\controlSUITE\libs\utilities\boot_rom\2833x&lt;/p&gt; &lt;p&gt;[quote user=&amp;quot;rmb_vector&amp;quot;]i&amp;#39;m debugging/experiencing a similar problem on the 28335 EZDSP board where i end up in the same endlesss loop after executing a few calls in main()[/quote]&lt;/p&gt; &lt;p&gt;Have you stepped through the calls to see where the code ends up back into the boot ROM?&amp;nbsp; I suspect you are taking an illegal trap which will put you into the boot ROM where the watchdog is enabled.&amp;nbsp; If this is the case, the watchdog will reset the device and if your boot mode is eCAN, you will endup in that loader.&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;&lt;/p&gt;</description></item><item><title>Forum Post: RE: TPS7A4101 EN pin</title><link>http://e2e.ti.com/support/power_management/linear_regulators/f/321/p/188665/678108.aspx#678108</link><pubDate>Wed, 16 May 2012 19:23:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678108</guid><dc:creator>Anthony Berwin</dc:creator><description>&lt;p&gt;Hi Darwin,&lt;/p&gt; &lt;p&gt;Vin=12-30V, Vout=10V&lt;/p&gt; &lt;p&gt;Lets assume Iout=20mA. (This is an estimate.)&lt;/p&gt; &lt;p&gt;Thanks, Anthony&lt;/p&gt;</description></item><item><title>Forum Post: RE: Questions on QMSS-monolithic-qpend Core to Core Communication</title><link>http://e2e.ti.com/support/embedded/bios/f/355/p/188505/678109.aspx#678109</link><pubDate>Wed, 16 May 2012 19:23:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678109</guid><dc:creator>Justin32</dc:creator><description>&lt;p&gt;I&amp;#39;ll look into 1. and 4.&lt;/p&gt; &lt;p&gt;For 3. see&lt;a href="http://e2e.ti.com/support/embedded/bios/f/355/p/188541/678107.aspx#678107"&gt; http://e2e.ti.com/support/embedded/bios/f/355/p/188541/678107.aspx#678107&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Justin&lt;/p&gt;</description></item><item><title>Forum Post: RE: MSP430f5510 crystal drive strength</title><link>http://e2e.ti.com/support/microcontrollers/msp43016-bit_ultra-low_power_mcus/f/166/p/187847/678104.aspx#678104</link><pubDate>Wed, 16 May 2012 19:22:00 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:678104</guid><dc:creator>Sylwester Nowocien</dc:creator><description>&lt;p&gt;Hi Jens-Michael,&lt;/p&gt; &lt;p&gt;You have right with CMOS technology, this is obvious.&lt;span id="result_box" lang="en"&gt;&lt;span class="hps"&gt; I&amp;#39;m not quite&lt;/span&gt; &lt;span class="hps"&gt;clearly&lt;/span&gt; &lt;span class="hps"&gt;in the words&lt;/span&gt; &lt;span class="hps"&gt;(it&amp;#39;s still&lt;/span&gt; &lt;span class="hps"&gt;my problem&lt;/span&gt; &lt;span class="hps"&gt;with the language&lt;/span&gt; &lt;span class="hps"&gt;-&lt;/span&gt; &lt;span class="hps"&gt;I&amp;#39;m sorry).&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;I know that this is real engeener work, this is not my first time:)... But in that project I need very high long term clock stability and I&amp;#39;m trying minimalize all factor which increase aging efects include &amp;quot;too much power&amp;quot;.&lt;span id="result_box" lang="en"&gt;&lt;span class="hps"&gt; Since it is&lt;/span&gt; &lt;span class="hps"&gt;difficult to&lt;/span&gt; &lt;span class="hps"&gt;reasonably&lt;/span&gt; &lt;span class="hps"&gt;measure&lt;/span&gt; &lt;span class="hps"&gt;and I don&amp;#39;t have&lt;/span&gt; &lt;span class="hps"&gt;much time&lt;/span&gt;&lt;/span&gt;, hence my question.&lt;/p&gt; &lt;p&gt;&lt;span id="result_box" lang="en"&gt;&lt;span class="hps"&gt;&lt;/span&gt;&lt;/span&gt;I see you&amp;#39;re an engineer with a reasonable, rational approach.&amp;nbsp; Have you any idea how can I speed up that process? I mean crystal aging process associated with the excessive power? Of course drive them more much power but this is bad idea because relationship between power and long term crystal stability isn&amp;#39;t linear and as You also noticed, much power increase crystal mechanical damage faster than in normal works (let we say by 10 years) so I&amp;#39;m afraid that get any reasonable results in 3-4 weeks are impossible:(... &lt;/p&gt; &lt;p&gt;Thak you for your interest and comprehensive posts.&lt;/p&gt;</description></item></channel></rss>
