• 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 » Development Tools » TI C/C++ Compiler » TI C/C++ Compiler - Forum » MISRA-C Rule 10.1 Misreported by MSP430 C Compiler
Share
TI C/C++ Compiler
  • Forum
Options
  • Subscribe via RSS

Forums

MISRA-C Rule 10.1 Misreported by MSP430 C Compiler

This question is answered
A. Kirchhoff
Posted by A. Kirchhoff
on Nov 22 2011 12:30 PM
Intellectual505 points

I am using CCS v5.1.0.09000 with MSP430 C compiler v4.0.0.  The following code produces an error on the indicated lines and states MISRA rule 10.1 ("The value of an expression of integer type shall not be implicitly converted to a different underlying type if it is not a conversion to a wider integer type of the same signedness") as the reason.  The error stays with the line containing the function call, so I think the compiler has a problem with the return value of Uart_WriteByteArray().  The curious part about this bug is that it depends on the size of the second parameter.

Thanks, Austin

 

From header file:
typedef enum UartError
{
    UartError_OK,
    UartError_NO_DATA,
    UartError_BUFFER_FULL
} UartError_t;

typedef enum UartPort
{
    UartPort_0 = 0u,
    UartPort_1 = 1u,
    UartPort_2 = 2u,
    UartPort_3 = 3u
} UartPort_t;

extern UartError_t Uart_WriteByteArray(
    UartPort_t port,
    uint16_t numToWrite,
    const uint8_t source[]);

Code:

{
    static uint8_t junk[300];
    const uint16_t length = 30u;
    UartError_t error;

    error = Uart_WriteByteArray(    /* MISRA 10.1 error reported */
                UartPort_1,
                300u,
                junk);

    error = Uart_WriteByteArray(    /* okay */
                UartPort_1,
                30u,
                junk);

    error = Uart_WriteByteArray(    /* MISRA 10.1 error reported */
                UartPort_1,
                length,
                junk);

    if (error == UartError_OK)
    {
        _no_operation();
    }
}

MSP430 MISRA
Report Abuse
  • Reply
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
All Replies
  • George Mock
    Posted by George Mock
    on Nov 22 2011 15:58 PM
    Verified Answer
    Verified by George Mock
    Guru51565 points

    Thank you for this test case.  I can reproduce the problem.  I don't see why those diagnostics are emitted.  I submitted SDSCM00042447 in the SDOWP system to have this fixed.  Feel free to track it with the SDOWP link below in my sig.

    Thanks and regards,

    -George


    TI C/C++ Compiler Forum Moderator
    Please click Verify Answer on the best reply to your question.
    The Compiler Wiki answers most common questions.
    Track an issue with SDOWP. Enter your bug id in the "Find Record ID" box.

    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