• Join
  • Sign In with my.TI Login
Texas Instruments
  • Products
  • Applications
  • Tools & Software
  • Support & Community
  • Sample & Buy
  • About TI
Sample & Purchase Cart Sample & Purchase Cart
  • Search
  • Advanced
TI E2E™ Community
  • Support Forums
  • Blogs
  • Groups
  • Videos
  • 简体中文
  • More ...
TI Home » TI E2E Community » Support Forums » Embedded Software » BIOS » BIOS forum » SYS/BIOS - None-Jtag data transfer
Share
BIOS
  • Forum
  • Announcements
Options
  • Subscribe via RSS

SYS/BIOS - None-Jtag data transfer

SYS/BIOS - None-Jtag data transfer

This question is answered
HRi
Posted by HRi
on Jun 27 2012 09:38 AM
Mastermind7340 points

Hi,

Is there a way to transfer the SYS/BIOS Logs, Errors using one of the device interface (not via the Jtag)?

Many Thanks,

HR

Report Abuse
  • Reply
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
All Replies
  • HRi
    Posted by HRi
    on Jun 27 2012 11:12 AM
    Mastermind7340 points

    Hi,

    OK, There is a function hook for the SYS/BIOS Error, Is there something the same for the Logs?

    Thanks,

    HR

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Scott Gary
    Posted by Scott Gary
    on Jun 27 2012 22:21 PM
    Genius10040 points

    HR,

    You can override the System provider’s (e.g., SysMin’s) output function to send data to a specific output port, for example.

    Which device are you running on?  And which versions of SYS/BIOS and XDCtools?

    Scott

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • HRi
    Posted by HRi
    on Jul 03 2012 01:19 AM
    Mastermind7340 points

    Scott,

    I'm using the OMAP-L138, SYS/BIOS-6.33.5.46, XDCtools-3.23.2.47,

    Thanks,

    HR

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Scott Gary
    Posted by Scott Gary
    on Jul 03 2012 22:07 PM
    Verified Answer
    Verified by HRi
    Genius10040 points

    HR,

    OK, thanks.  I searched and didn’t find anything to point you to directly.

    One way to get the Log records output without JTAG is to…
    1) use the LoggerSys logger to direct Log data to System_printf()
    2) select the SysMin System provider to buffer the System_printf() data
    3) override SysMin’s output function with your own I/O function
    4) call SysMin_flush() at runtime to flush the buffered data to your I/O function

    For example, in your configuration:

    // configure Logging
    var Defaults = xdc.useModule('xdc.runtime.Defaults');
    var Log = xdc.useModule('xdc.runtime.Log');
    var LoggerSys = xdc.useModule('xdc.runtime.LoggerSys');

    var LoggerSysParams = new LoggerSys.Params;
    var myLogger = LoggerSys.create(LoggerSysParams);
    Defaults.common$.logger = myLogger;

    // configure system provider
    var System = xdc.useModule('xdc.runtime.System');
    var SysMin = xdc.useModule('xdc.runtime.SysMin');
    SysMin.outputFxn = “&myOutputFxn”;

    In your C code call SysMin_flush() when you want the Log records buffered in SysMin to be flushed to your output routine:

        Log_info2("x = %d, y = %d", x, y);
        …
        SysMin_flush();

    This is one way to do it, there may be better ways that others on the forum can chip in with.

    If you haven’t seen it, here is a detailed description of the Logging mechanisms: http://rtsc.eclipse.org/docs-tip/Using_xdc.runtime_Logging#Examples

    Scott

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • HRi
    Posted by HRi
    on Jul 04 2012 00:03 AM
    Mastermind7340 points

    Scott,

    Great ! Thanks,

    HR

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
TI E2E™ Community
  • Support Forums
  • Blogs
  • Videos
  • Groups
  • Site Support & Feedback
  • Settings
TI E2E™ Community Groups
  • TI University Program
  • Make the Switch
  • Microcontroller Projects
  • Motor Drive & Control
Other Communities
  • Deyisupport
  • Designsomething.org
  • beagleboard.org
  • TI on Element 14
  • TI on TechXchangeSM
Other Technical & Support Resources
  • WEBENCH® Design Center
  • Product Information Centers
  • Technical Documents
  • TI Design Network
  • TI Technical Articles
  • TI Training

All content and materials on this site are provided "as is". TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a particular purpose, title and non-infringement of any third party intellectual property right. TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with respect to these materials. No license, either express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a license from a third party, or a license from TI.

Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms of Use of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms of Use of this site. TI, its suppliers and providers of content reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.

Follow Us Texas Instruments on Facebook Texas Instruments on Twitter Texas Instruments on LinkedIn Texas Instruments on Google+
TI Worldwide | Contact Us | my.TI Login | Site Map | Corporate Citizenship | mobile m.ti.com (Mobile Version)

TI is a global semiconductor design and manufacturing company. Innovate with 100,000+ analog ICs and
embedded processors, along with software, tools and the industry’s largest sales/support staff.

© Copyright 1995-2013 Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy Policy | Terms of Use