This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi All,
I try to load a .BMP file from an SD card on the Beaglebone Black (using CCS 6.1, no OS, bare metal and some StarterWare). I defined the BMP structure as follows:
struct BMP { char HeaderField[2]; uint32_t SizeOfFile; uint16_t Reserved_1; uint16_t Reserved_2; uint32_t OffsetToPixelArray; uint32_t SizeOfHeader; uint32_t WidthInPixels; uint32_t HeightInPixels; uint16_t ColorPlanes; uint16_t BitsPerPixel; uint32_t Compression; uint32_t ImageSize; uint32_t HorizontalResolution; uint32_t VerticalResolution; uint32_t ColorsInPalette; uint32_t ColorsUsed; } __attribute__((packed));
When I try to load the BMP structure from a file, I get errors (jump to error handler) whil trying to access m_Bmp.SizeOfFile :
FileBitmap::FileBitmap(const char* fileName) { FRESULT fRslt; uint32_t br; fRslt = f_open(&m_File, fileName, FA_READ); if(FR_OK == fRslt) { fRslt = f_read(&m_File, &m_Bmp, sizeof(BMP), &br); if(FR_OK == fRslt) { uint32_t sizeOfPixelArray = m_Bmp.SizeOfFile - m_Bmp.OffsetToPixelArray; m_pPixels = new uint8_t[sizeOfPixelArray]; fRslt = f_lseek(&m_File, m_Bmp.OffsetToPixelArray); if(FR_OK == fRslt) { fRslt = f_read(&m_File, m_pPixels, sizeOfPixelArray, &br); } } } }
I think this has something to do with alignment, but don't know how to solve this. I can't change the layout of struct BMP...
Any suggestions are welcome !
Thanks, Paul
Do you use the TI ARM compiler? For right now, I presume you do. Please preprocess the source file which contains the function FileBitmap and attach that to your next post. Also show the compiler version and build options.
Thanks and regards,
-George
Hi George,
I'm using ti-cgt-arm_5.2.5 compiler.
This is the output of the preprosessor for the file:
(How can I attach a file instead of including it in the post? )
Thanks.
/** +================================================================== | BPg Project (BeagleBonePlayground) +================================================================== File: FileBitmap.cpp Created: 18-okt.-2015 19:40:38 Author: Paul Copyright (C) 2015 Paul Van den Bergh. All rights reserved. <www.paulvandenbergh.be> Some parts of this code can be based on Texas Instruments StarterWare and are copyrighted under the following terms: * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Subversion info: ================ File name: $HeadURL: server-paul/.../FileBitmap.cpp $ Revision: $LastChangedRevision: 439 $ Last modified: $Date: 2015-10-18 19:41:29 +0200 (Sun, 18 Oct 2015) $ **/ /* * FileBitmap.cpp * * Created on: 18-okt.-2015 * Author: Paul */ /** +================================================================== | Project BPg (BeagleBonePlayground) +================================================================== File: FileBitmap.h Created: 18-okt.-2015 19:40:38 Author: Paul Copyright (C) 2015 Paul Van den Bergh. All rights reserved. <www.paulvandenbergh.be> Some parts of this code can be based on Texas Instruments StarterWare and are copyrighted under the following terms: * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Subversion info: ================ File name: $HeadURL: server-paul/.../FileBitmap.h $ Revision: $LastChangedRevision: 439 $ Last modified: $Date: 2015-10-18 19:41:29 +0200 (Sun, 18 Oct 2015) $ **/ /* * FileBitmap.h * * Created on: 18-okt.-2015 * Author: Paul */ /** +================================================================== | Project BPg (BeagleBonePlayground) +================================================================== File: Bitmap.h Created: 18-okt.-2015 17:44:33 Author: Paul Copyright (C) 2015 Paul Van den Bergh. All rights reserved. <www.paulvandenbergh.be> Some parts of this code can be based on Texas Instruments StarterWare and are copyrighted under the following terms: * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Subversion info: ================ File name: $HeadURL: server-paul/.../Bitmap.h $ Revision: $LastChangedRevision: 437 $ Last modified: $Date: 2015-10-18 17:45:15 +0200 (Sun, 18 Oct 2015) $ **/ /* * Bitmap.h * * Created on: 18-okt.-2015 * Author: Paul */ /** +================================================================== | Project BPg (BeagleBonePlayground) +================================================================== File: GrObject.h Created: Sep 30, 2015 8:47:23 PM Author: Paul Copyright (C) 2015 Paul Van den Bergh. All rights reserved. <www.paulvandenbergh.be> Some parts of this code can be based on Texas Instruments StarterWare and are copyrighted under the following terms: * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Subversion info: ================ File name: $HeadURL: server-paul/.../GrObject.h $ Revision: $LastChangedRevision: 365 $ Last modified: $Date: 2015-10-01 12:56:52 +0200 (Thu, 01 Oct 2015) $ **/ /* * GrObject.h * * Created on: Sep 30, 2015 * Author: Paul */ /** +================================================================== | Project BPg (BeagleBonePlayground) +================================================================== File: DrawingContext.h Created: Sep 21, 2015 9:29:48 AM Author: Paul Copyright (C) 2015 Paul Van den Bergh. All rights reserved. <www.paulvandenbergh.be> Some parts of this code can be based on Texas Instruments StarterWare and are copyrighted under the following terms: * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Subversion info: ================ File name: $HeadURL: server-paul/.../DrawingContext.h $ Revision: $LastChangedRevision: 386 $ Last modified: $Date: 2015-10-04 15:38:36 +0200 (Sun, 04 Oct 2015) $ **/ /* * DrawingContext.h * * Created on: Sep 21, 2015 * Author: Paul */ /*****************************************************************************/ /* STDINT.H v15.4.0I15142 */ /* */ /* Copyright (c) 2002-2015 Texas Instruments Incorporated */ /* http://www.ti.com/ */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following conditions */ /* are met: */ /* */ /* Redistributions of source code must retain the above copyright */ /* notice, this list of conditions and the following disclaimer. */ /* */ /* Redistributions in binary form must reproduce the above copyright */ /* notice, this list of conditions and the following disclaimer in */ /* the documentation and/or other materials provided with the */ /* distribution. */ /* */ /* Neither the name of Texas Instruments Incorporated nor the names */ /* of its contributors may be used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */ /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */ /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */ /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */ /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */ /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */ /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */ /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */ /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */ /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* */ /*****************************************************************************/ /* 7.18.1.1 Exact-width integer types */ typedef signed char int8_t; typedef unsigned char uint8_t; typedef short int16_t; typedef unsigned short uint16_t; typedef int int32_t; typedef unsigned int uint32_t; typedef long long int64_t; typedef unsigned long long uint64_t; /* 7.18.1.2 Minimum-width integer types */ typedef int8_t int_least8_t; typedef uint8_t uint_least8_t; typedef int16_t int_least16_t; typedef uint16_t uint_least16_t; typedef int32_t int_least32_t; typedef uint32_t uint_least32_t; typedef int64_t int_least64_t; typedef uint64_t uint_least64_t; /* 7.18.1.3 Fastest minimum-width integer types */ typedef int32_t int_fast8_t; typedef uint32_t uint_fast8_t; typedef int32_t int_fast16_t; typedef uint32_t uint_fast16_t; typedef int32_t int_fast32_t; typedef uint32_t uint_fast32_t; typedef int64_t int_fast64_t; typedef uint64_t uint_fast64_t; /* 7.18.1.4 Integer types capable of holding object pointers */ typedef int intptr_t; typedef unsigned int uintptr_t; /* 7.18.1.5 Greatest-width integer types */ typedef long long intmax_t; typedef unsigned long long uintmax_t; /* According to footnotes in the 1999 C standard, "C++ implementations should define these macros only when __STDC_LIMIT_MACROS is defined before <stdint.h> is included." */ /** +================================================================== | Project BPg (BeagleBonePlayground) +================================================================== File: Display.h Created: Sep 18, 2015 9:37:27 AM Author: Paul Copyright (C) 2015 Paul Van den Bergh. All rights reserved. <www.paulvandenbergh.be> Some parts of this code can be based on Texas Instruments StarterWare and are copyrighted under the following terms: * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Subversion info: ================ File name: $HeadURL: server-paul/.../Display.h $ Revision: $LastChangedRevision: 387 $ Last modified: $Date: 2015-10-04 18:25:31 +0200 (Sun, 04 Oct 2015) $ **/ /* * Display.h * * Created on: Sep 18, 2015 * Author: Paul */ namespace BPg { class Widget; /** * \brief Class Display * * A display driver is used to allow the graphics library to interface with a particular display. * It is responsible for dealing with the low level details of the display, including communicating with the display controller and understanding the commands required to make the display controller behave as required. * The display driver must provide two things : * - the set of routines required by the graphics library to draw onto the screen and * - a set of routines for performing display-dependent operations. * * The display dependent operations will vary from display to display, but will include an initialization routine, and may include such things as backlight control and contrast control. * The routines required by the graphics library are organized into a structure that describes the display driver to the graphics library. The tDisplay structure contains these function pointers, along with the width and height of the screen. * An instantiation of this structure should be supplied by the display driver, along with a prototype for that structure in a display driver-specific header file. * For some displays, it may be more efficient to draw into a buffer in local memory and copy the results to the screen after all drawing operations are complete. * This is usually true of 4 BPP displays, where there are two pixels in each byte of display memory (where writing a single pixel would require a display memory read followed by a display memory write). * In this case, the Flush() operation is used to indicate that the local display buffer should be copied to the display. * If the display driver uses a buffer in local memory, it may be advantageous for the display driver to track dirty rectangles (in other words, portions of the buffer that have been changed and therefore must be updated to the display) to accelerate the process of copying the local memory to the display memory. * However, dirty rectangle tracking is optional, and is entirely the responsibility of the display driver if it is used (in other words, the graphics library will not provide dirty rectangle information to the display driver). * */ class Display { friend class Circle; friend class Line; public: Display(uint16_t width, uint16_t height); virtual ~Display(); /** * \brief Clears the Display. * * (Device dependent) * * \param None. * * \return void * */ virtual void ClrScreen(void) = 0; /** * \brief get the Width of the display. * * \param none * * \return the width of the display in pixels * */ uint16_t getWidth(void) { return m_Width; } /** * \brief get the Height of the display. * * \param none * * \return the height of the display in pixels. * */ uint16_t getHeight(void) { return m_Height; } Widget* getRootWidget(void); //***************************************************************************** // Virtuals //***************************************************************************** /** * * \brief Translates a 24-bit RGB color to the display driver-specific color. * * This function translates a 24-bit RGB color into a value that can be * written into the display's frame buffer in order to reproduce that color, * or the closest possible approximation of that color. * * \param Value is the 24-bit RGB color. The least-significant byte is the blue channel, * the next byte is the green channel, and the third byte is the red channel. * * \return Returns the display-driver specific color. * */ virtual uint32_t ColorTranslate(uint32_t value) { return value; }; /** * * \brief Flushes cached drawing operations. * * \param None. * * \return None. * */ virtual void Flush(void) {}; /** * * \brief Draws a horizontal line on the display. * * \param startX is the starting X coordinate of the line. * \param endX is the ending X coordinate of the line. * \param Y is the Y coordinate of the line. * \param color is the color to draw the line. * * This function draws a horizontal line on the display. This assumes that * clipping has already been performed, and that both end points of the line * are within the extents of the display. * * \return None. * */ virtual void LineDrawH(const uint16_t startX, const uint16_t endX, const uint16_t Y, uint32_t color) = 0; /** * * \brief Draws a vertical line on the display. * * \param X is the X coordinate of the line. * \param startY is the starting Y coordinate of the line. * \param endY is the ending Y coordinate of the line. * \param color is the color to draw the line. * * This function draws a vertical line on a display. This assumes that * clipping has already been performed, and that both end points of the line * are within the extents of the display. * * \return None. * */ virtual void LineDrawV(const uint16_t X, const uint16_t startY, const uint16_t endY, uint32_t color) = 0; /** * * \brief Draws a pixel on the display. * * \param X is the X coordinate of the pixel. * \param Y is the Y coordinate of the pixel. * \param color is the color to draw the pixel. * * This function draws a pixel on the display. This assumes that clipping has * already been performed. * * \return None. * */ virtual void PixelDraw(const uint16_t X, const uint16_t Y, uint32_t color) = 0; /** * * \brief Draws a horizontal sequence of pixels on a display. * * \param lX is the X coordinate of the first pixel. * \param lY is the Y coordinate of the first pixel. * \param lX0 is sub-pixel offset within the pixel data, which is valid for 1 * or 4 bit per pixel formats. * \param lCount is the number of pixels to draw. * \param lBPP is the number of bits per pixel; must be 1, 4, or 8. * \param pucData is a pointer to the pixel data. For 1 and 4 bit per pixel * formats, the most significant bit(s) represent the left-most pixel. * \param pucPalette is a pointer to the palette used to draw the pixels. * * This function draws a horizontal sequence of pixels on a display, using the * supplied palette. For 1 bit per pixel format, the palette contains * pre-translated colors; for 4 and 8 bit per pixel formats, the palette * contains 24-bit RGB values that must be translated before being written to * the display. * * \return None. * */ // virtual void PixelDrawMultiple() /** * * \brief Fills a rectangle on a display. * * \param pRect is a pointer to the structure describing the rectangle to fill. * \param color is the color to fill the rectangle. * * This function fills a rectangle on the display. This assumes that clipping * has already been performed, and that all sides of the rectangle are within * the extents of the display. * * \return None. * */ virtual void RectFill(const uint16_t top, const uint16_t left, const uint16_t bottom, const uint16_t right, uint32_t color) = 0; protected: /** * \brief The width of the display in pixels. */ const uint16_t m_Width; /** * \brief The height of the display in pixels. */ const uint16_t m_Height; private: }; } /* namespace BPg */ /** +================================================================== | Project BPg (BeagleBonePlayground) +================================================================== File: Rectangle.h Created: Sep 18, 2015 11:21:30 PM Author: Paul Copyright (C) 2015 Paul Van den Bergh. All rights reserved. <www.paulvandenbergh.be> Some parts of this code can be based on Texas Instruments StarterWare and are copyrighted under the following terms: * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Subversion info: ================ File name: $HeadURL: server-paul/.../Rectangle.h $ Revision: $LastChangedRevision: 338 $ Last modified: $Date: 2015-09-24 14:42:04 +0200 (Thu, 24 Sep 2015) $ **/ /* * Rectangle.h * * Created on: Sep 18, 2015 * Author: Paul */ /** +================================================================== | Project BPg (BeagleBonePlayground) +================================================================== File: Point.h Created: Sep 20, 2015 7:36:21 PM Author: Paul Copyright (C) 2015 Paul Van den Bergh. All rights reserved. <www.paulvandenbergh.be> Some parts of this code can be based on Texas Instruments StarterWare and are copyrighted under the following terms: * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Subversion info: ================ File name: $HeadURL: server-paul/.../Point.h $ Revision: $LastChangedRevision: 338 $ Last modified: $Date: 2015-09-24 14:42:04 +0200 (Thu, 24 Sep 2015) $ **/ /* * Point.h * * Created on: Sep 20, 2015 * Author: Paul */ namespace BPg { class Point { public: Point(int16_t x, int16_t y); virtual ~Point(); bool operator==(Point& other); int16_t getX(void) { return m_X; } int16_t getY(void) { return m_Y; } void setX(int16_t X) { m_X = X; } void setY(int16_t Y) { m_Y = Y; } protected: int16_t m_X; int16_t m_Y; private: }; } /* namespace BPg */ /** +================================================================== | Project BPg (BeagleBonePlayground) +================================================================== File: Size.h Created: Sep 20, 2015 7:45:46 PM Author: Paul Copyright (C) 2015 Paul Van den Bergh. All rights reserved. <www.paulvandenbergh.be> Some parts of this code can be based on Texas Instruments StarterWare and are copyrighted under the following terms: * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Subversion info: ================ File name: $HeadURL: server-paul/.../Size.h $ Revision: $LastChangedRevision: 287 $ Last modified: $Date: 2015-09-21 09:20:45 +0200 (Mon, 21 Sep 2015) $ **/ /* * Size.h * * Created on: Sep 20, 2015 * Author: Paul */ namespace BPg { class Size { public: Size(uint16_t width, uint16_t height); virtual ~Size(); uint16_t getWidth(void) { return m_Width; } uint16_t getHeight(void){ return m_Height;} protected: uint16_t m_Width; uint16_t m_Height; private: }; } /* namespace BPg */ namespace BPg { class Rectangle { public: Rectangle(int16_t top, int16_t left, int16_t bottom, int16_t right); Rectangle(int16_t top, int16_t left, Size size); Rectangle(Point upperLeft, Point lowerRight); Rectangle(Point upperLeft, Size size); Rectangle(); virtual ~Rectangle(); bool ContainsPoint(Point& pPoint); bool IsPtHigher(Point& pPoint) { return pPoint.getY() < getTop(); } bool IsPtLower(Point& pPoint) { return pPoint.getY() > getBottom(); } bool IsPtOnLeft(Point& pPoint) { return pPoint.getX() < getLeft(); } bool IsPtOnRight(Point& pPoint) { return pPoint.getX() > getRight(); } bool IsPtInHRange(Point& pPoint) { return ((pPoint.getX() > getLeft()) && (pPoint.getX() < getRight())); } bool IsPtInVRange(Point& pPoint) { return ((pPoint.getY() > getTop()) && (pPoint.getY() < getBottom())); } int16_t getTop(void) { return m_UpperLeft.getY(); } int16_t getLeft(void) { return m_UpperLeft.getX(); } int16_t getBottom(void) { return m_LowerRight.getY(); } int16_t getRight(void) { return m_LowerRight.getX(); } int16_t getWidth(void) { return m_LowerRight.getX() - m_UpperLeft.getX(); } int16_t getHeight(void) { return m_LowerRight.getY() - m_UpperLeft.getY(); } void setTop(int16_t top) { m_UpperLeft.setY(top); } void setLeft(int16_t left) { m_UpperLeft.setX(left); } void setBottom(int16_t bottom) { m_LowerRight.setY(bottom); } void setRight(int16_t right) { m_LowerRight.setX(right); } Size getSize(void); protected: void Normalize(void); Point m_UpperLeft; Point m_LowerRight; private: }; } /* namespace BPg */ /** +================================================================== | Project BPg (BeagleBonePlayground) +================================================================== File: Font.h Created: Sep 18, 2015 11:22:06 PM Author: Paul Copyright (C) 2015 Paul Van den Bergh. All rights reserved. <www.paulvandenbergh.be> Some parts of this code can be based on Texas Instruments StarterWare and are copyrighted under the following terms: * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Subversion info: ================ File name: $HeadURL: server-paul/.../Font.h $ Revision: $LastChangedRevision: 377 $ Last modified: $Date: 2015-10-02 17:46:36 +0200 (Fri, 02 Oct 2015) $ **/ /* * Font.h * * Created on: Sep 18, 2015 * Author: Paul */ //namespace BPg //{ //***************************************************************************** // //! This structure describes a font used for drawing text onto the screen. // //***************************************************************************** typedef struct { // //! The format of the font. Can be one of FONT_FMT_UNCOMPRESSED or //! FONT_FMT_PIXEL_RLE. // uint8_t ucFormat; // //! The maximum width of a character; this is the width of the widest //! character in the font, though any individual character may be narrower //! than this width. // uint8_t ucMaxWidth; // //! The height of the character cell; this may be taller than the font data //! for the characters (to provide inter-line spacing). // uint8_t ucHeight; // //! The offset between the top of the character cell and the baseline of //! the glyph. The baseline is the bottom row of a capital letter, below //! which only the descenders of the lower case letters occur. // uint8_t ucBaseline; // //! The offset within pucData to the data for each character in the font. // uint16_t pusOffset[96]; // //! A pointer to the data for the font. // const uint8_t *pucData; } tFont; //***************************************************************************** // //! Indicates that the font data is stored in an uncompressed format. // //***************************************************************************** //***************************************************************************** // //! Indicates that the font data is stored using a pixel-based RLE format. // //***************************************************************************** //***************************************************************************** // // Prototypes for the predefined fonts in the graphics library. ..Cm.. is the // computer modern font, which is a serif font. ..Cmsc.. is the computer // modern small-caps font, which is also a serif font. ..Cmss.. is the // computer modern sans-serif font. // //***************************************************************************** extern const tFont g_sFontCm12; extern const tFont g_sFontCm12b; extern const tFont g_sFontCm12i; extern const tFont g_sFontCm14; extern const tFont g_sFontCm14b; extern const tFont g_sFontCm14i; extern const tFont g_sFontCm16; extern const tFont g_sFontCm16b; extern const tFont g_sFontCm16i; extern const tFont g_sFontCm18; extern const tFont g_sFontCm18b; extern const tFont g_sFontCm18i; extern const tFont g_sFontCm20; extern const tFont g_sFontCm20b; extern const tFont g_sFontCm20i; extern const tFont g_sFontCm22; extern const tFont g_sFontCm22b; extern const tFont g_sFontCm22i; extern const tFont g_sFontCm24; extern const tFont g_sFontCm24b; extern const tFont g_sFontCm24i; extern const tFont g_sFontCm26; extern const tFont g_sFontCm26b; extern const tFont g_sFontCm26i; extern const tFont g_sFontCm28; extern const tFont g_sFontCm28b; extern const tFont g_sFontCm28i; extern const tFont g_sFontCm30; extern const tFont g_sFontCm30b; extern const tFont g_sFontCm30i; extern const tFont g_sFontCm32; extern const tFont g_sFontCm32b; extern const tFont g_sFontCm32i; extern const tFont g_sFontCm34; extern const tFont g_sFontCm34b; extern const tFont g_sFontCm34i; extern const tFont g_sFontCm36; extern const tFont g_sFontCm36b; extern const tFont g_sFontCm36i; extern const tFont g_sFontCm38; extern const tFont g_sFontCm38b; extern const tFont g_sFontCm38i; extern const tFont g_sFontCm40; extern const tFont g_sFontCm40b; extern const tFont g_sFontCm40i; extern const tFont g_sFontCm42; extern const tFont g_sFontCm42b; extern const tFont g_sFontCm42i; extern const tFont g_sFontCm44; extern const tFont g_sFontCm44b; extern const tFont g_sFontCm44i; extern const tFont g_sFontCm46; extern const tFont g_sFontCm46b; extern const tFont g_sFontCm46i; extern const tFont g_sFontCm48; extern const tFont g_sFontCm48b; extern const tFont g_sFontCm48i; extern const tFont g_sFontCmsc12; extern const tFont g_sFontCmsc14; extern const tFont g_sFontCmsc16; extern const tFont g_sFontCmsc18; extern const tFont g_sFontCmsc20; extern const tFont g_sFontCmsc22; extern const tFont g_sFontCmsc24; extern const tFont g_sFontCmsc26; extern const tFont g_sFontCmsc28; extern const tFont g_sFontCmsc30; extern const tFont g_sFontCmsc32; extern const tFont g_sFontCmsc34; extern const tFont g_sFontCmsc36; extern const tFont g_sFontCmsc38; extern const tFont g_sFontCmsc40; extern const tFont g_sFontCmsc42; extern const tFont g_sFontCmsc44; extern const tFont g_sFontCmsc46; extern const tFont g_sFontCmsc48; extern const tFont g_sFontCmss12; extern const tFont g_sFontCmss12b; extern const tFont g_sFontCmss12i; extern const tFont g_sFontCmss14; extern const tFont g_sFontCmss14b; extern const tFont g_sFontCmss14i; extern const tFont g_sFontCmss16; extern const tFont g_sFontCmss16b; extern const tFont g_sFontCmss16i; extern const tFont g_sFontCmss18; extern const tFont g_sFontCmss18b; extern const tFont g_sFontCmss18i; extern const tFont g_sFontCmss20; extern const tFont g_sFontCmss20b; extern const tFont g_sFontCmss20i; extern const tFont g_sFontCmss22; extern const tFont g_sFontCmss22b; extern const tFont g_sFontCmss22i; extern const tFont g_sFontCmss24; extern const tFont g_sFontCmss24b; extern const tFont g_sFontCmss24i; extern const tFont g_sFontCmss26; extern const tFont g_sFontCmss26b; extern const tFont g_sFontCmss26i; extern const tFont g_sFontCmss28; extern const tFont g_sFontCmss28b; extern const tFont g_sFontCmss28i; extern const tFont g_sFontCmss30; extern const tFont g_sFontCmss30b; extern const tFont g_sFontCmss30i; extern const tFont g_sFontCmss32; extern const tFont g_sFontCmss32b; extern const tFont g_sFontCmss32i; extern const tFont g_sFontCmss34; extern const tFont g_sFontCmss34b; extern const tFont g_sFontCmss34i; extern const tFont g_sFontCmss36; extern const tFont g_sFontCmss36b; extern const tFont g_sFontCmss36i; extern const tFont g_sFontCmss38; extern const tFont g_sFontCmss38b; extern const tFont g_sFontCmss38i; extern const tFont g_sFontCmss40; extern const tFont g_sFontCmss40b; extern const tFont g_sFontCmss40i; extern const tFont g_sFontCmss42; extern const tFont g_sFontCmss42b; extern const tFont g_sFontCmss42i; extern const tFont g_sFontCmss44; extern const tFont g_sFontCmss44b; extern const tFont g_sFontCmss44i; extern const tFont g_sFontCmss46; extern const tFont g_sFontCmss46b; extern const tFont g_sFontCmss46i; extern const tFont g_sFontCmss48; extern const tFont g_sFontCmss48b; extern const tFont g_sFontCmss48i; extern const tFont g_sFontCmtt12; extern const tFont g_sFontCmtt14; extern const tFont g_sFontCmtt16; extern const tFont g_sFontCmtt18; extern const tFont g_sFontCmtt20; extern const tFont g_sFontCmtt22; extern const tFont g_sFontCmtt24; extern const tFont g_sFontCmtt26; extern const tFont g_sFontCmtt28; extern const tFont g_sFontCmtt30; extern const tFont g_sFontCmtt32; extern const tFont g_sFontCmtt34; extern const tFont g_sFontCmtt36; extern const tFont g_sFontCmtt38; extern const tFont g_sFontCmtt40; extern const tFont g_sFontCmtt42; extern const tFont g_sFontCmtt44; extern const tFont g_sFontCmtt46; extern const tFont g_sFontCmtt48; extern const tFont g_sFontFixed6x8; //} /* namespace BPg */ namespace BPg { //***************************************************************************** // // The character printed by GrStringDraw in place of any character in the // string which does not appear in the font. // //***************************************************************************** class DrawingContext { friend class Circle; friend class Line; public: DrawingContext(Display* pDisplay); virtual ~DrawingContext(); uint16_t DisplayWidthGet(void); uint16_t DisplayHeightGet(void); void FontSet(const tFont* pFont); void BackgroundSet(uint32_t color); void ForegroundSet(uint32_t color); void ClipRegionSet(Rectangle& Rect); Rectangle& ClipRegionGet(void) { return m_ClipRegion; } // void Flush(void); void RectFill(Rectangle& Rect); void RectDraw(Rectangle& Rect); uint32_t StringWidthGet(const char* pString, uint32_t length = -1); uint32_t StringHeightGet(const char* pString); void StringDraw(const char* pString, uint32_t length, int32_t lX, int32_t lY, uint32_t Opaque); void StringDrawCentered(const char* pString, uint32_t length, int32_t XCenter, int32_t YCenter, uint32_t Opaque); // protected: Display* m_pDisplay; Rectangle m_ClipRegion; uint32_t m_FgndColor; uint32_t m_BkgndColor; const tFont* m_pFont; private: }; } /* namespace BPg */ namespace BPg { class GrObject { public: GrObject(); virtual ~GrObject(); virtual void Draw(DrawingContext* pContext) = 0; virtual void Fill(DrawingContext* pContext) = 0; protected: private: }; } /* namespace BPg */ namespace BPg { struct BMP { char HeaderField[2]; uint32_t SizeOfFile; uint16_t Reserved_1; uint16_t Reserved_2; uint32_t OffsetToPixelArray; uint32_t SizeOfHeader; uint32_t WidthInPixels; uint32_t HeightInPixels; uint16_t ColorPlanes; uint16_t BitsPerPixel; uint32_t Compression; uint32_t ImageSize; uint32_t HorizontalResolution; uint32_t VerticalResolution; uint32_t ColorsInPalette; uint32_t ColorsUsed; } __attribute__((packed)); class Bitmap: public GrObject { public: Bitmap(); virtual ~Bitmap(); virtual void Draw(DrawingContext* pContext); virtual void Fill(DrawingContext* pContext) { Draw(pContext); } const BMP* getBMP(void) { return &m_Bmp; } protected: BMP m_Bmp; uint8_t* m_pPixels; private: }; } /* namespace BPg */ /*---------------------------------------------------------------------------/ / FatFs - FAT file system module include R0.11a (C)ChaN, 2015 /----------------------------------------------------------------------------/ / FatFs module is a free software that opened under license policy of / following conditions. / / Copyright (C) 2015, ChaN, all right reserved. / / 1. Redistributions of source code must retain the above copyright notice, / this condition and the following disclaimer. / / This software is provided by the copyright holder and contributors "AS IS" / and any warranties related to this software are DISCLAIMED. / The copyright owner or contributors be NOT LIABLE for any damages caused / by use of this software. /---------------------------------------------------------------------------*/ extern "C" { /*-------------------------------------------*/ /* Integer type definitions for FatFs module */ /*-------------------------------------------*/ /* This type MUST be 8-bit */ typedef unsigned char BYTE; /* These types MUST be 16-bit */ typedef short SHORT; typedef unsigned short WORD; typedef unsigned short WCHAR; /* These types MUST be 16-bit or 32-bit */ typedef int INT; typedef unsigned int UINT; /* These types MUST be 32-bit */ typedef long LONG; typedef unsigned long DWORD; /*---------------------------------------------------------------------------/ / FatFs - FAT file system module configuration file R0.11a (C)ChaN, 2015 /---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------/ / Function Configurations /---------------------------------------------------------------------------*/ /* This option switches read-only configuration. (0:Read/Write or 1:Read-only) / Read-only configuration removes writing API functions, f_write(), f_sync(), / f_unlink(), f_mkdir(), f_chmod(), f_rename(), f_truncate(), f_getfree() / and optional writing functions as well. */ /* This option defines minimization level to remove some basic API functions. / / 0: All basic functions are enabled. / 1: f_stat(), f_getfree(), f_unlink(), f_mkdir(), f_chmod(), f_utime(), / f_truncate() and f_rename() function are removed. / 2: f_opendir(), f_readdir() and f_closedir() are removed in addition to 1. / 3: f_lseek() function is removed in addition to 2. */ /* This option switches string functions, f_gets(), f_putc(), f_puts() and / f_printf(). / / 0: Disable string functions. / 1: Enable without LF-CRLF conversion. / 2: Enable with LF-CRLF conversion. */ /* This option switches filtered directory read feature and related functions, / f_findfirst() and f_findnext(). (0:Disable or 1:Enable) */ /* This option switches f_mkfs() function. (0:Disable or 1:Enable) */ /* This option switches fast seek feature. (0:Disable or 1:Enable) */ /* This option switches volume label functions, f_getlabel() and f_setlabel(). / (0:Disable or 1:Enable) */ /* This option switches f_forward() function. (0:Disable or 1:Enable) / To enable it, also _FS_TINY need to be set to 1. */ /*---------------------------------------------------------------------------/ / Locale and Namespace Configurations /---------------------------------------------------------------------------*/ /* This option specifies the OEM code page to be used on the target system. / Incorrect setting of the code page can cause a file open failure. / / 1 - ASCII (No extended character. Non-LFN cfg. only) / 437 - U.S. / 720 - Arabic / 737 - Greek / 771 - KBL / 775 - Baltic / 850 - Latin 1 / 852 - Latin 2 / 855 - Cyrillic / 857 - Turkish / 860 - Portuguese / 861 - Icelandic / 862 - Hebrew / 863 - Canadian French / 864 - Arabic / 865 - Nordic / 866 - Russian / 869 - Greek 2 / 932 - Japanese (DBCS) / 936 - Simplified Chinese (DBCS) / 949 - Korean (DBCS) / 950 - Traditional Chinese (DBCS) */ /* The _USE_LFN option switches the LFN feature. / / 0: Disable LFN feature. _MAX_LFN has no effect. / 1: Enable LFN with static working buffer on the BSS. Always NOT thread-safe. / 2: Enable LFN with dynamic working buffer on the STACK. / 3: Enable LFN with dynamic working buffer on the HEAP. / / When enable the LFN feature, Unicode handling functions (option/unicode.c) must / be added to the project. The LFN working buffer occupies (_MAX_LFN + 1) * 2 bytes. / When use stack for the working buffer, take care on stack overflow. When use heap / memory for the working buffer, memory management functions, ff_memalloc() and / ff_memfree(), must be added to the project. */ /* This option switches character encoding on the API. (0:ANSI/OEM or 1:Unicode) / To use Unicode string for the path name, enable LFN feature and set _LFN_UNICODE / to 1. This option also affects behavior of string I/O functions. */ /* When _LFN_UNICODE is 1, this option selects the character encoding on the file to / be read/written via string I/O functions, f_gets(), f_putc(), f_puts and f_printf(). / / 0: ANSI/OEM / 1: UTF-16LE / 2: UTF-16BE / 3: UTF-8 / / When _LFN_UNICODE is 0, this option has no effect. */ /* This option configures relative path feature. / / 0: Disable relative path feature and remove related functions. / 1: Enable relative path feature. f_chdir() and f_chdrive() are available. / 2: f_getcwd() function is available in addition to 1. / / Note that directory items read via f_readdir() are affected by this option. */ /*---------------------------------------------------------------------------/ / Drive/Volume Configurations /---------------------------------------------------------------------------*/ /* Number of volumes (logical drives) to be used. */ /* _STR_VOLUME_ID option switches string volume ID feature. / When _STR_VOLUME_ID is set to 1, also pre-defined strings can be used as drive / number in the path name. _VOLUME_STRS defines the drive ID strings for each / logical drives. Number of items must be equal to _VOLUMES. Valid characters for / the drive ID strings are: A-Z and 0-9. */ /* This option switches multi-partition feature. By default (0), each logical drive / number is bound to the same physical drive number and only an FAT volume found on / the physical drive will be mounted. When multi-partition feature is enabled (1), / each logical drive number is bound to arbitrary physical drive and partition / listed in the VolToPart[]. Also f_fdisk() funciton will be available. */ /* These options configure the range of sector size to be supported. (512, 1024, / 2048 or 4096) Always set both 512 for most systems, all type of memory cards and / harddisk. But a larger value may be required for on-board flash memory and some / type of optical media. When _MAX_SS is larger than _MIN_SS, FatFs is configured / to variable sector size and GET_SECTOR_SIZE command must be implemented to the / disk_ioctl() function. */ /* This option switches ATA-TRIM feature. (0:Disable or 1:Enable) / To enable Trim feature, also CTRL_TRIM command should be implemented to the / disk_ioctl() function. */ /* If you need to know correct free space on the FAT32 volume, set bit 0 of this / option, and f_getfree() function at first time after volume mount will force / a full FAT scan. Bit 1 controls the use of last allocated cluster number. / / bit0=0: Use free cluster count in the FSINFO if available. / bit0=1: Do not trust free cluster count in the FSINFO. / bit1=0: Use last allocated cluster number in the FSINFO if available. / bit1=1: Do not trust last allocated cluster number in the FSINFO. */ /*---------------------------------------------------------------------------/ / System Configurations /---------------------------------------------------------------------------*/ /* This option switches tiny buffer configuration. (0:Normal or 1:Tiny) / At the tiny configuration, size of the file object (FIL) is reduced _MAX_SS / bytes. Instead of private sector buffer eliminated from the file object, / common sector buffer in the file system object (FATFS) is used for the file / data transfer. */ /* The _FS_NORTC option switches timestamp feature. If the system does not have / an RTC function or valid timestamp is not needed, set _FS_NORTC to 1 to disable / the timestamp feature. All objects modified by FatFs will have a fixed timestamp / defined by _NORTC_MON, _NORTC_MDAY and _NORTC_YEAR. / When timestamp feature is enabled (_FS_NORTC == 0), get_fattime() function need / to be added to the project to read current time form RTC. _NORTC_MON, / _NORTC_MDAY and _NORTC_YEAR have no effect. / These options have no effect at read-only configuration (_FS_READONLY == 1). */ /* The _FS_LOCK option switches file lock feature to control duplicated file open / and illegal operation to open objects. This option must be 0 when _FS_READONLY / is 1. / / 0: Disable file lock feature. To avoid volume corruption, application program / should avoid illegal open, remove and rename to the open objects. / >0: Enable file lock feature. The value defines how many files/sub-directories / can be opened simultaneously under file lock control. Note that the file / lock feature is independent of re-entrancy. */ /* The _FS_REENTRANT option switches the re-entrancy (thread safe) of the FatFs / module itself. Note that regardless of this option, file access to different / volume is always re-entrant and volume control functions, f_mount(), f_mkfs() / and f_fdisk() function, are always not re-entrant. Only file/directory access / to the same volume is under control of this feature. / / 0: Disable re-entrancy. _FS_TIMEOUT and _SYNC_t have no effect. / 1: Enable re-entrancy. Also user provided synchronization handlers, / ff_req_grant(), ff_rel_grant(), ff_del_syncobj() and ff_cre_syncobj() / function, must be added to the project. Samples are available in / option/syscall.c. / / The _FS_TIMEOUT defines timeout period in unit of time tick. / The _SYNC_t defines O/S dependent sync object type. e.g. HANDLE, ID, OS_EVENT*, / SemaphoreHandle_t and etc.. A header file for O/S definitions needs to be / included somewhere in the scope of ff.c. */ /* The _WORD_ACCESS option is an only platform dependent option. It defines / which access method is used to the word data on the FAT volume. / / 0: Byte-by-byte access. Always compatible with all platforms. / 1: Word access. Do not choose this unless under both the following conditions. / / * Address misaligned memory access is always allowed to ALL instructions. / * Byte order on the memory is little-endian. / / If it is the case, _WORD_ACCESS can also be set to 1 to reduce code size. / Following table shows allowable settings of some type of processors. / / ARM7TDMI 0 *2 ColdFire 0 *1 V850E 0 *2 / Cortex-M3 0 *3 Z80 0/1 V850ES 0/1 / Cortex-M0 0 *2 x86 0/1 TLCS-870 0/1 / AVR 0/1 RX600(LE) 0/1 TLCS-900 0/1 / AVR32 0 *1 RL78 0 *2 R32C 0 *2 / PIC18 0/1 SH-2 0 *1 M16C 0/1 / PIC24 0 *2 H8S 0 *1 MSP430 0 *2 / PIC32 0 *1 H8/300H 0 *1 8051 0/1 / / *1:Big-endian. / *2:Unaligned memory access is not supported. / *3:Some compilers generate LDM/STM for mem_cpy function. */ /* Definitions of volume management */ /* Type of path name strings on FatFs API */ typedef char TCHAR; /* File system object structure (FATFS) */ typedef struct { BYTE fs_type; /* FAT sub-type (0:Not mounted) */ BYTE drv; /* Physical drive number */ BYTE csize; /* Sectors per cluster (1,2,4...128) */ BYTE n_fats; /* Number of FAT copies (1 or 2) */ BYTE wflag; /* win[] flag (b0:dirty) */ BYTE fsi_flag; /* FSINFO flags (b7:disabled, b0:dirty) */ WORD id; /* File system mount ID */ WORD n_rootdir; /* Number of root directory entries (FAT12/16) */ DWORD last_clust; /* Last allocated cluster */ DWORD free_clust; /* Number of free clusters */ DWORD n_fatent; /* Number of FAT entries, = number of clusters + 2 */ DWORD fsize; /* Sectors per FAT */ DWORD volbase; /* Volume start sector */ DWORD fatbase; /* FAT start sector */ DWORD dirbase; /* Root directory start sector (FAT32:Cluster#) */ DWORD database; /* Data start sector */ DWORD winsect; /* Current sector appearing in the win[] */ BYTE win[512]; /* Disk access window for Directory, FAT (and file data at tiny cfg) */ } FATFS; /* File object structure (FIL) */ typedef struct { FATFS* fs; /* Pointer to the related file system object (**do not change order**) */ WORD id; /* Owner file system mount ID (**do not change order**) */ BYTE flag; /* Status flags */ BYTE err; /* Abort flag (error code) */ DWORD fptr; /* File read/write pointer (Zeroed on file open) */ DWORD fsize; /* File size */ DWORD sclust; /* File start cluster (0:no cluster chain, always 0 when fsize is 0) */ DWORD clust; /* Current cluster of fpter (not valid when fprt is 0) */ DWORD dsect; /* Sector number appearing in buf[] (0:invalid) */ DWORD dir_sect; /* Sector number containing the directory entry */ BYTE* dir_ptr; /* Pointer to the directory entry in the win[] */ BYTE buf[512]; /* File private data read/write window */ } FIL; /* Directory object structure (DIR) */ typedef struct { FATFS* fs; /* Pointer to the owner file system object (**do not change order**) */ WORD id; /* Owner file system mount ID (**do not change order**) */ WORD index; /* Current read/write index number */ DWORD sclust; /* Table start cluster (0:Root dir) */ DWORD clust; /* Current cluster */ DWORD sect; /* Current sector */ BYTE* dir; /* Pointer to the current SFN entry in the win[] */ BYTE* fn; /* Pointer to the SFN (in/out) {file[8],ext[3],status[1]} */ } DIR; /* File information structure (FILINFO) */ typedef struct { DWORD fsize; /* File size */ WORD fdate; /* Last modified date */ WORD ftime; /* Last modified time */ BYTE fattrib; /* Attribute */ TCHAR fname[13]; /* Short file name (8.3 format) */ } FILINFO; /* File function return code (FRESULT) */ typedef enum { FR_OK = 0, /* (0) Succeeded */ FR_DISK_ERR, /* (1) A hard error occurred in the low level disk I/O layer */ FR_INT_ERR, /* (2) Assertion failed */ FR_NOT_READY, /* (3) The physical drive cannot work */ FR_NO_FILE, /* (4) Could not find the file */ FR_NO_PATH, /* (5) Could not find the path */ FR_INVALID_NAME, /* (6) The path name format is invalid */ FR_DENIED, /* (7) Access denied due to prohibited access or directory full */ FR_EXIST, /* (8) Access denied due to prohibited access */ FR_INVALID_OBJECT, /* (9) The file/directory object is invalid */ FR_WRITE_PROTECTED, /* (10) The physical drive is write protected */ FR_INVALID_DRIVE, /* (11) The logical drive number is invalid */ FR_NOT_ENABLED, /* (12) The volume has no work area */ FR_NO_FILESYSTEM, /* (13) There is no valid FAT volume */ FR_MKFS_ABORTED, /* (14) The f_mkfs() aborted due to any parameter error */ FR_TIMEOUT, /* (15) Could not get a grant to access the volume within defined period */ FR_LOCKED, /* (16) The operation is rejected according to the file sharing policy */ FR_NOT_ENOUGH_CORE, /* (17) LFN working buffer could not be allocated */ FR_TOO_MANY_OPEN_FILES, /* (18) Number of open files > _FS_LOCK */ FR_INVALID_PARAMETER /* (19) Given parameter is invalid */ } FRESULT; /*--------------------------------------------------------------*/ /* FatFs module application interface */ FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */ FRESULT f_close (FIL* fp); /* Close an open file object */ FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from a file */ FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to a file */ FRESULT f_forward (FIL* fp, UINT(*func)(const BYTE*,UINT), UINT btf, UINT* bf); /* Forward data to the stream */ FRESULT f_lseek (FIL* fp, DWORD ofs); /* Move file pointer of a file object */ FRESULT f_truncate (FIL* fp); /* Truncate file */ FRESULT f_sync (FIL* fp); /* Flush cached data of a writing file */ FRESULT f_opendir (DIR* dp, const TCHAR* path); /* Open a directory */ FRESULT f_closedir (DIR* dp); /* Close an open directory */ FRESULT f_readdir (DIR* dp, FILINFO* fno); /* Read a directory item */ FRESULT f_findfirst (DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern); /* Find first file */ FRESULT f_findnext (DIR* dp, FILINFO* fno); /* Find next file */ FRESULT f_mkdir (const TCHAR* path); /* Create a sub directory */ FRESULT f_unlink (const TCHAR* path); /* Delete an existing file or directory */ FRESULT f_rename (const TCHAR* path_old, const TCHAR* path_new); /* Rename/Move a file or directory */ FRESULT f_stat (const TCHAR* path, FILINFO* fno); /* Get file status */ FRESULT f_chmod (const TCHAR* path, BYTE attr, BYTE mask); /* Change attribute of the file/dir */ FRESULT f_utime (const TCHAR* path, const FILINFO* fno); /* Change times-tamp of the file/dir */ FRESULT f_chdir (const TCHAR* path); /* Change current directory */ FRESULT f_chdrive (const TCHAR* path); /* Change current drive */ FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */ FRESULT f_getfree (const TCHAR* path, DWORD* nclst, FATFS** fatfs); /* Get number of free clusters on the drive */ FRESULT f_getlabel (const TCHAR* path, TCHAR* label, DWORD* vsn); /* Get volume label */ FRESULT f_setlabel (const TCHAR* label); /* Set volume label */ FRESULT f_mount (FATFS* fs, const TCHAR* path, BYTE opt); /* Mount/Unmount a logical drive */ FRESULT f_mkfs (const TCHAR* path, BYTE sfd, UINT au); /* Create a file system on the volume */ FRESULT f_fdisk (BYTE pdrv, const DWORD szt[], void* work); /* Divide a physical drive into some partitions */ int f_putc (TCHAR c, FIL* fp); /* Put a character to the file */ int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */ int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */ TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the file */ /* * Paul Van den Bergh Additions */ /* Returns logical drive number (-1:invalid drive) */ int get_ldnumber (const TCHAR** path /* Pointer to pointer to the path name */ ); /* * End Paul Van den Bergh Additions */ /*--------------------------------------------------------------*/ /* Additional user defined functions */ /* RTC function */ DWORD get_fattime (void); /* Unicode support functions */ /* Sync functions */ /*--------------------------------------------------------------*/ /* Flags and offset address */ /* File access control and file status flags (FIL.flag) */ /* FAT sub type (FATFS.fs_type) */ /* File attribute bits for directory entry */ /* Fast seek feature */ /*--------------------------------*/ /* Multi-byte word access macros */ } namespace BPg { class FileBitmap: public Bitmap { public: FileBitmap(const char* fileName); virtual ~FileBitmap(); protected: FIL m_File; private: }; } /* namespace BPg */ namespace BPg { FileBitmap::FileBitmap(const char* fileName) { FRESULT fRslt; uint32_t br; fRslt = f_open(&m_File, fileName, 0x01); if(FR_OK == fRslt) { fRslt = f_read(&m_File, &m_Bmp, sizeof(BMP), &br); if(FR_OK == fRslt) { uint32_t sizeOfPixelArray = m_Bmp.SizeOfFile - m_Bmp.OffsetToPixelArray; m_pPixels = new uint8_t[sizeOfPixelArray]; fRslt = f_lseek(&m_File, m_Bmp.OffsetToPixelArray); if(FR_OK == fRslt) { fRslt = f_read(&m_File, m_pPixels, sizeOfPixelArray, &br); } } } } FileBitmap::~FileBitmap() { delete [] m_pPixels; } } /* namespace BPg */
This is the output on the Build Console :
**** Build of configuration Debug for project BPg **** "C:\\ti\\ccsv6\\utils\\bin\\gmake" -k -j 8 all 'Building file: ../main.cpp' 'Building file: ../System/BoardID.cpp' 'Building file: ../System/Display.cpp' 'Building file: ../System/Event.cpp' 'Building file: ../System/Exception.cpp' 'Building file: ../System/Storage.cpp' 'Building file: ../System/diskio.cpp' 'Building file: ../System/Graphics/fonts/fontcm12.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="main.pp" --exceptions "../main.cpp" 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/BoardID.pp" --obj_directory="System" --exceptions "../System/BoardID.cpp" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Display.pp" --obj_directory="System" --exceptions "../System/Display.cpp" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Event.pp" --obj_directory="System" --exceptions "../System/Event.cpp" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Exception.pp" --obj_directory="System" --exceptions "../System/Exception.cpp" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Storage.pp" --obj_directory="System" --exceptions "../System/Storage.cpp" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/diskio.pp" --obj_directory="System" --exceptions "../System/diskio.cpp" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm12.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm12.c" "..\System\.\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_hs_mmcsd.h", line 102: warning #1557-D: white space between backslash and newline in line splice ignored "..\.\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign 'Finished building: ../System/Graphics/fonts/fontcm12.c' ' ' 'Building file: ../System/Graphics/fonts/fontcm12b.c' 'Finished building: ../System/Display.cpp' 'Finished building: ../System/Exception.cpp' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm12b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm12b.c" ' ' 'Building file: ../System/Graphics/fonts/fontcm12i.c' 'Building file: ../System/Graphics/fonts/fontcm14.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm12i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm12i.c" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm14.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm14.c" 'Finished building: ../System/Graphics/fonts/fontcm12b.c' ' ' 'Building file: ../System/Graphics/fonts/fontcm14b.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm14b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm14b.c" 'Finished building: ../System/Graphics/fonts/fontcm12i.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcm14.c' 'Finished building: ../System/BoardID.cpp' ' ' 'Building file: ../System/Graphics/fonts/fontcm14i.c' 'Building file: ../System/Graphics/fonts/fontcm16.c' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm14i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm14i.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm16.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm16.c" 'Building file: ../System/Graphics/fonts/fontcm16b.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm16b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm16b.c" 'Finished building: ../System/Graphics/fonts/fontcm14b.c' ' ' 'Building file: ../System/Graphics/fonts/fontcm16i.c' 'Finished building: ../main.cpp' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm16i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm16i.c" 'Finished building: ../System/Graphics/fonts/fontcm14i.c' 'Building file: ../System/Graphics/fonts/fontcm18.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcm16.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcm18b.c' ' ' 'Finished building: ../System/diskio.cpp' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm18.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm18.c" 'Finished building: ../System/Graphics/fonts/fontcm16b.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcm18i.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm18b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm18b.c" ' ' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcm20.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm18i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm18i.c" 'Building file: ../System/Graphics/fonts/fontcm20b.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm20.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm20.c" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm20b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm20b.c" 'Finished building: ../System/Graphics/fonts/fontcm16i.c' ' ' 'Building file: ../System/Graphics/fonts/fontcm20i.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcm18.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm20i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm20i.c" ' ' 'Finished building: ../System/Graphics/fonts/fontcm18b.c' 'Building file: ../System/Graphics/fonts/fontcm22.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcm18i.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcm22b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm22.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm22.c" ' ' 'Finished building: ../System/Graphics/fonts/fontcm20.c' 'Finished building: ../System/Graphics/fonts/fontcm20b.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcm22i.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm22b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm22b.c" ' ' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm22i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm22i.c" 'Building file: ../System/Graphics/fonts/fontcm24.c' 'Building file: ../System/Graphics/fonts/fontcm24b.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm24.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm24.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm24b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm24b.c" 'Finished building: ../System/Graphics/fonts/fontcm20i.c' ' ' 'Building file: ../System/Graphics/fonts/fontcm24i.c' 'Finished building: ../System/Graphics/fonts/fontcm22.c' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm24i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm24i.c" 'Building file: ../System/Graphics/fonts/fontcm26.c' 'Finished building: ../System/Graphics/fonts/fontcm22b.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm26.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm26.c" ' ' 'Finished building: ../System/Graphics/fonts/fontcm22i.c' 'Building file: ../System/Graphics/fonts/fontcm26b.c' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm26b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm26b.c" 'Building file: ../System/Graphics/fonts/fontcm26i.c' 'Finished building: ../System/Graphics/fonts/fontcm24.c' 'Finished building: ../System/Graphics/fonts/fontcm24b.c' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm26i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm26i.c" ' ' 'Building file: ../System/Graphics/fonts/fontcm28.c' 'Building file: ../System/Graphics/fonts/fontcm28b.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm28.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm28.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm28b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm28b.c" 'Finished building: ../System/Event.cpp' ' ' 'Finished building: ../System/Graphics/fonts/fontcm24i.c' 'Building file: ../System/Graphics/fonts/fontcm28i.c' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcm30.c' 'Finished building: ../System/Graphics/fonts/fontcm26.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm28i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm28i.c" ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm30.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm30.c" 'Building file: ../System/Graphics/fonts/fontcm30b.c' 'Finished building: ../System/Graphics/fonts/fontcm26b.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm30b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm30b.c" ' ' 'Finished building: ../System/Graphics/fonts/fontcm26i.c' 'Building file: ../System/Graphics/fonts/fontcm30i.c' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcm32.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm30i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm30i.c" 'Finished building: ../System/Graphics/fonts/fontcm28.c' 'Finished building: ../System/Graphics/fonts/fontcm28b.c' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm32.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm32.c" ' ' 'Building file: ../System/Graphics/fonts/fontcm32b.c' 'Building file: ../System/Graphics/fonts/fontcm32i.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm32i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm32i.c" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm32b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm32b.c" 'Finished building: ../System/Graphics/fonts/fontcm28i.c' 'Finished building: ../System/Graphics/fonts/fontcm30.c' ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcm34.c' 'Building file: ../System/Graphics/fonts/fontcm34b.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcm30b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm34.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm34.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm34b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm34b.c" ' ' 'Building file: ../System/Graphics/fonts/fontcm34i.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm34i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm34i.c" 'Finished building: ../System/Graphics/fonts/fontcm30i.c' 'Finished building: ../System/Graphics/fonts/fontcm32.c' ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcm36.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm36.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm36.c" 'Building file: ../System/Graphics/fonts/fontcm36b.c' 'Finished building: ../System/Graphics/fonts/fontcm32b.c' ' ' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcm32i.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm36b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm36b.c" 'Building file: ../System/Graphics/fonts/fontcm36i.c' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm36i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm36i.c" 'Building file: ../System/Graphics/fonts/fontcm38.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm38.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm38.c" 'Finished building: ../System/Graphics/fonts/fontcm34.c' ' ' 'Building file: ../System/Graphics/fonts/fontcm38b.c' 'Finished building: ../System/Graphics/fonts/fontcm34b.c' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm38b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm38b.c" 'Building file: ../System/Graphics/fonts/fontcm38i.c' 'Finished building: ../System/Graphics/fonts/fontcm34i.c' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm38i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm38i.c" 'Building file: ../System/Graphics/fonts/fontcm40.c' 'Finished building: ../System/Graphics/fonts/fontcm36.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm40.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm40.c" ' ' 'Building file: ../System/Graphics/fonts/fontcm40b.c' 'Finished building: ../System/Graphics/fonts/fontcm36b.c' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm40b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm40b.c" 'Building file: ../System/Graphics/fonts/fontcm40i.c' 'Finished building: ../System/Graphics/fonts/fontcm38.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcm36i.c' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm40i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm40i.c" ' ' 'Building file: ../System/Graphics/fonts/fontcm42.c' 'Building file: ../System/Graphics/fonts/fontcm42b.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm42.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm42.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm42b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm42b.c" 'Finished building: ../System/Storage.cpp' ' ' 'Finished building: ../System/Graphics/fonts/fontcm38b.c' 'Building file: ../System/Graphics/fonts/fontcm42i.c' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm42i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm42i.c" 'Building file: ../System/Graphics/fonts/fontcm44.c' 'Finished building: ../System/Graphics/fonts/fontcm38i.c' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm44.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm44.c" 'Finished building: ../System/Graphics/fonts/fontcm40.c' 'Building file: ../System/Graphics/fonts/fontcm44b.c' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcm44i.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm44b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm44b.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm44i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm44i.c" 'Finished building: ../System/Graphics/fonts/fontcm40b.c' ' ' 'Building file: ../System/Graphics/fonts/fontcm46.c' 'Finished building: ../System/Graphics/fonts/fontcm40i.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcm42.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm46.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm46.c" ' ' 'Finished building: ../System/Graphics/fonts/fontcm42b.c' ' ' 'Building file: ../System/Graphics/fonts/fontcm46b.c' ' ' 'Building file: ../System/Graphics/fonts/fontcm46i.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcm48.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm46b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm46b.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm46i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm46i.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm48.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm48.c" 'Finished building: ../System/Graphics/fonts/fontcm44.c' 'Finished building: ../System/Graphics/fonts/fontcm42i.c' ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcm48b.c' 'Finished building: ../System/Graphics/fonts/fontcm44b.c' 'Building file: ../System/Graphics/fonts/fontcm48i.c' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm48b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm48b.c" 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmsc12.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcm48i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcm48i.c" 'Finished building: ../System/Graphics/fonts/fontcm44i.c' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc12.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc12.c" 'Building file: ../System/Graphics/fonts/fontcmsc14.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc14.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc14.c" 'Finished building: ../System/Graphics/fonts/fontcm46.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcm46b.c' 'Building file: ../System/Graphics/fonts/fontcmsc16.c' 'Finished building: ../System/Graphics/fonts/fontcm46i.c' 'Finished building: ../System/Graphics/fonts/fontcm48.c' ' ' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmsc12.c' ' ' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc16.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc16.c" 'Building file: ../System/Graphics/fonts/fontcmsc18.c' ' ' 'Building file: ../System/Graphics/fonts/fontcmsc20.c' 'Building file: ../System/Graphics/fonts/fontcmsc22.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmsc24.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc18.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc18.c" 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmsc14.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc20.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc20.c" 'Finished building: ../System/Graphics/fonts/fontcm48b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc22.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc22.c" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc24.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc24.c" ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcmsc26.c' 'Building file: ../System/Graphics/fonts/fontcmsc28.c' 'Finished building: ../System/Graphics/fonts/fontcm48i.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc28.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc28.c" ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc26.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc26.c" 'Building file: ../System/Graphics/fonts/fontcmsc30.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmsc16.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc30.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc30.c" ' ' 'Building file: ../System/Graphics/fonts/fontcmsc32.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc32.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc32.c" 'Finished building: ../System/Graphics/fonts/fontcmsc18.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmsc20.c' 'Finished building: ../System/Graphics/fonts/fontcmsc22.c' 'Building file: ../System/Graphics/fonts/fontcmsc34.c' ' ' ' ' 'Finished building: ../System/Graphics/fonts/fontcmsc24.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmsc36.c' 'Building file: ../System/Graphics/fonts/fontcmsc38.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc34.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc34.c" ' ' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc36.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc36.c" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc38.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc38.c" 'Building file: ../System/Graphics/fonts/fontcmsc40.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmsc28.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc40.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc40.c" 'Finished building: ../System/Graphics/fonts/fontcmsc26.c' ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcmsc42.c' 'Building file: ../System/Graphics/fonts/fontcmsc44.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc42.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc42.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc44.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc44.c" 'Finished building: ../System/Graphics/fonts/fontcmsc30.c' ' ' 'Building file: ../System/Graphics/fonts/fontcmsc46.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc46.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc46.c" 'Finished building: ../System/Graphics/fonts/fontcmsc32.c' ' ' 'Building file: ../System/Graphics/fonts/fontcmsc48.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmsc48.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmsc48.c" 'Finished building: ../System/Graphics/fonts/fontcmsc34.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmsc38.c' 'Finished building: ../System/Graphics/fonts/fontcmsc36.c' 'Building file: ../System/Graphics/fonts/fontcmss12.c' ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcmss12b.c' 'Finished building: ../System/Graphics/fonts/fontcmsc40.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss12i.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss12.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss12.c" 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss12b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss12b.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss12i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss12i.c" 'Building file: ../System/Graphics/fonts/fontcmss14.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss14.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss14.c" 'Finished building: ../System/Graphics/fonts/fontcmsc42.c' 'Finished building: ../System/Graphics/fonts/fontcmsc44.c' ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcmss14b.c' 'Building file: ../System/Graphics/fonts/fontcmss14i.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss14b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss14b.c" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss14i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss14i.c" 'Finished building: ../System/Graphics/fonts/fontcmsc46.c' 'Finished building: ../System/Graphics/fonts/fontcmss12.c' 'Finished building: ../System/Graphics/fonts/fontcmss12b.c' ' ' ' ' ' ' 'Finished building: ../System/Graphics/fonts/fontcmss12i.c' 'Building file: ../System/Graphics/fonts/fontcmss16.c' 'Building file: ../System/Graphics/fonts/fontcmss16b.c' 'Finished building: ../System/Graphics/fonts/fontcmsc48.c' 'Finished building: ../System/Graphics/fonts/fontcmss14.c' 'Building file: ../System/Graphics/fonts/fontcmss16i.c' ' ' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' ' ' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss16.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss16.c" 'Building file: ../System/Graphics/fonts/fontcmss18.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss16b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss16b.c" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss16i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss16i.c" 'Building file: ../System/Graphics/fonts/fontcmss18b.c' 'Building file: ../System/Graphics/fonts/fontcmss18i.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmss14b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss18.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss18.c" 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss18b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss18b.c" 'Finished building: ../System/Graphics/fonts/fontcmss14i.c' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss18i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss18i.c" ' ' 'Building file: ../System/Graphics/fonts/fontcmss20.c' 'Building file: ../System/Graphics/fonts/fontcmss20b.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss20.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss20.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss20b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss20b.c" 'Finished building: ../System/Graphics/fonts/fontcmss16.c' 'Finished building: ../System/Graphics/fonts/fontcmss16b.c' ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcmss20i.c' 'Finished building: ../System/Graphics/fonts/fontcmss16i.c' 'Building file: ../System/Graphics/fonts/fontcmss22.c' 'Invoking: ARM Compiler' ' ' 'Finished building: ../System/Graphics/fonts/fontcmss18.c' 'Finished building: ../System/Graphics/fonts/fontcmss18b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss20i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss20i.c" 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss22b.c' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss22.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss22.c" 'Finished building: ../System/Graphics/fonts/fontcmss18i.c' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss22i.c' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss22b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss22b.c" 'Building file: ../System/Graphics/fonts/fontcmss24.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss24b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss22i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss22i.c" 'Finished building: ../System/Graphics/fonts/fontcmss20.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss24.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss24.c" ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss24b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss24b.c" 'Building file: ../System/Graphics/fonts/fontcmss24i.c' 'Finished building: ../System/Graphics/fonts/fontcmss20b.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss24i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss24i.c" ' ' 'Building file: ../System/Graphics/fonts/fontcmss26.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss26.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss26.c" 'Finished building: ../System/Graphics/fonts/fontcmss20i.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmss22.c' 'Building file: ../System/Graphics/fonts/fontcmss26b.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmss22b.c' 'Building file: ../System/Graphics/fonts/fontcmss26i.c' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss26b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss26b.c" 'Finished building: ../System/Graphics/fonts/fontcmss22i.c' 'Finished building: ../System/Graphics/fonts/fontcmss24.c' 'Finished building: ../System/Graphics/fonts/fontcmss24b.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss28.c' ' ' ' ' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss26i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss26i.c" 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss28b.c' 'Building file: ../System/Graphics/fonts/fontcmss28i.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss28.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss28.c" 'Building file: ../System/Graphics/fonts/fontcmss30.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss28b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss28b.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss28i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss28i.c" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss30.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss30.c" 'Finished building: ../System/Graphics/fonts/fontcmss24i.c' 'Finished building: ../System/Graphics/fonts/fontcmss26.c' ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcmss30b.c' 'Building file: ../System/Graphics/fonts/fontcmss30i.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss30b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss30b.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss30i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss30i.c" 'Finished building: ../System/Graphics/fonts/fontcmss26b.c' ' ' 'Building file: ../System/Graphics/fonts/fontcmss32.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmss26i.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss32.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss32.c" ' ' 'Finished building: ../System/Graphics/fonts/fontcmss28.c' ' ' 'Building file: ../System/Graphics/fonts/fontcmss32b.c' 'Building file: ../System/Graphics/fonts/fontcmss32i.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmss28b.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss32b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss32b.c" 'Finished building: ../System/Graphics/fonts/fontcmss30.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss32i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss32i.c" ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcmss34.c' 'Building file: ../System/Graphics/fonts/fontcmss34b.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmss30b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss34.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss34.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss34b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss34b.c" ' ' 'Finished building: ../System/Graphics/fonts/fontcmss30i.c' 'Building file: ../System/Graphics/fonts/fontcmss34i.c' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss36.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss34i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss34i.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss36.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss36.c" 'Finished building: ../System/Graphics/fonts/fontcmss28i.c' ' ' 'Building file: ../System/Graphics/fonts/fontcmss36b.c' 'Finished building: ../System/Graphics/fonts/fontcmss32.c' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss36b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss36b.c" 'Finished building: ../System/Graphics/fonts/fontcmss32b.c' 'Building file: ../System/Graphics/fonts/fontcmss36i.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmss32i.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmss34.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss36i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss36i.c" 'Building file: ../System/Graphics/fonts/fontcmss38.c' ' ' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss38b.c' 'Finished building: ../System/Graphics/fonts/fontcmss34b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss38.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss38.c" 'Building file: ../System/Graphics/fonts/fontcmss38i.c' 'Invoking: ARM Compiler' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss40.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss38b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss38b.c" 'Finished building: ../System/Graphics/fonts/fontcmss36.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss38i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss38i.c" 'Finished building: ../System/Graphics/fonts/fontcmss34i.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss40.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss40.c" ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcmss40b.c' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss40i.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss40b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss40b.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss40i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss40i.c" 'Finished building: ../System/Graphics/fonts/fontcmss36b.c' ' ' 'Building file: ../System/Graphics/fonts/fontcmss42.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmss36i.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss42.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss42.c" ' ' 'Building file: ../System/Graphics/fonts/fontcmss42b.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmss38b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss42b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss42b.c" 'Finished building: ../System/Graphics/fonts/fontcmss38.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmss38i.c' ' ' 'Building file: ../System/Graphics/fonts/fontcmss42i.c' ' ' 'Building file: ../System/Graphics/fonts/fontcmss44.c' 'Finished building: ../System/Graphics/fonts/fontcmss40.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss42i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss42i.c" 'Building file: ../System/Graphics/fonts/fontcmss44b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss44.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss44.c" ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmss44i.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss44b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss44b.c" 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmss40b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss44i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss44i.c" ' ' 'Building file: ../System/Graphics/fonts/fontcmss46.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss46.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss46.c" 'Finished building: ../System/Graphics/fonts/fontcmss40i.c' 'Finished building: ../System/Graphics/fonts/fontcmss42.c' ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcmss46b.c' 'Building file: ../System/Graphics/fonts/fontcmss46i.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmss42b.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss46b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss46b.c" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss46i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss46i.c" ' ' 'Finished building: ../System/Graphics/fonts/fontcmss42i.c' 'Building file: ../System/Graphics/fonts/fontcmss48.c' 'Finished building: ../System/Graphics/fonts/fontcmss44.c' ' ' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss48.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss48.c" 'Building file: ../System/Graphics/fonts/fontcmss48b.c' 'Finished building: ../System/Graphics/fonts/fontcmss44b.c' 'Building file: ../System/Graphics/fonts/fontcmss48i.c' ' ' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss48b.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss48b.c" 'Building file: ../System/Graphics/fonts/fontcmtt12.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmss48i.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmss48i.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt12.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt12.c" 'Finished building: ../System/Graphics/fonts/fontcmss44i.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmss46.c' 'Building file: ../System/Graphics/fonts/fontcmtt14.c' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt14.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt14.c" 'Building file: ../System/Graphics/fonts/fontcmtt16.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt16.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt16.c" 'Finished building: ../System/Graphics/fonts/fontcmss46b.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmss46i.c' 'Finished building: ../System/Graphics/fonts/fontcmtt12.c' 'Building file: ../System/Graphics/fonts/fontcmtt18.c' ' ' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt18.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt18.c" 'Building file: ../System/Graphics/fonts/fontcmtt20.c' 'Building file: ../System/Graphics/fonts/fontcmtt22.c' 'Finished building: ../System/Graphics/fonts/fontcmss48.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt20.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt20.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt22.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt22.c" ' ' 'Finished building: ../System/Graphics/fonts/fontcmss48i.c' 'Building file: ../System/Graphics/fonts/fontcmtt24.c' 'Finished building: ../System/Graphics/fonts/fontcmss48b.c' ' ' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmtt14.c' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt24.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt24.c" 'Finished building: ../System/Graphics/fonts/fontcmtt16.c' 'Building file: ../System/Graphics/fonts/fontcmtt26.c' ' ' 'Building file: ../System/Graphics/fonts/fontcmtt28.c' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/fonts/fontcmtt30.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt26.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt26.c" 'Building file: ../System/Graphics/fonts/fontcmtt32.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt28.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt28.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt30.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt30.c" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt32.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt32.c" 'Finished building: ../System/Graphics/fonts/fontcmtt18.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmtt20.c' 'Building file: ../System/Graphics/fonts/fontcmtt34.c' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt34.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt34.c" 'Finished building: ../System/Graphics/fonts/fontcmtt22.c' 'Building file: ../System/Graphics/fonts/fontcmtt36.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmtt24.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt36.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt36.c" 'Building file: ../System/Graphics/fonts/fontcmtt38.c' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt38.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt38.c" 'Building file: ../System/Graphics/fonts/fontcmtt40.c' 'Finished building: ../System/Graphics/fonts/fontcmtt26.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmtt28.c' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt40.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt40.c" ' ' 'Building file: ../System/Graphics/fonts/fontcmtt42.c' 'Building file: ../System/Graphics/fonts/fontcmtt44.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt42.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt42.c" 'Finished building: ../System/Graphics/fonts/fontcmtt30.c' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/fonts/fontcmtt32.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt44.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt44.c" ' ' ' ' 'Building file: ../System/Graphics/fonts/fontcmtt46.c' 'Building file: ../System/Graphics/fonts/fontcmtt48.c' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt46.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt46.c" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontcmtt48.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontcmtt48.c" 'Finished building: ../System/Graphics/fonts/fontcmtt34.c' ' ' 'Finished building: ../System/Graphics/fonts/fontcmtt36.c' 'Building file: ../System/Graphics/fonts/fontfixed6x8.c' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/Bitmap.cpp' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/fonts/fontfixed6x8.pp" --obj_directory="System/Graphics/fonts" "../System/Graphics/fonts/fontfixed6x8.c" 'Finished building: ../System/Graphics/fonts/fontcmtt38.c' 'Finished building: ../System/Graphics/fonts/fontcmtt40.c' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Bitmap.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Bitmap.cpp" ' ' 'Building file: ../System/Graphics/Button.cpp' 'Building file: ../System/Graphics/Canvas.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Button.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Button.cpp" 'Invoking: ARM Compiler' "..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Canvas.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Canvas.cpp" 'Finished building: ../System/Graphics/fonts/fontcmtt42.c' ' ' "..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign "../System/Graphics/Button.cpp", line 204: warning #179-D: variable "pImg" was declared but never referenced "../System/Graphics/Button.cpp", line 222: warning #69-D: integer conversion resulted in a change of sign 'Finished building: ../System/Graphics/fonts/fontcmtt44.c' 'Building file: ../System/Graphics/Circle.cpp' "..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign ' ' "../System/Graphics/Canvas.cpp", line 169: warning #69-D: integer conversion resulted in a change of sign 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Circle.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Circle.cpp" 'Building file: ../System/Graphics/Color.cpp' 'Finished building: ../System/Graphics/fonts/fontfixed6x8.c' 'Invoking: ARM Compiler' ' ' 'Finished building: ../System/Graphics/fonts/fontcmtt46.c' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Color.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Color.cpp" 'Finished building: ../System/Graphics/fonts/fontcmtt48.c' "..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign 'Building file: ../System/Graphics/DrawingContext.cpp' ' ' ' ' 'Invoking: ARM Compiler' 'Building file: ../System/Graphics/FileBitmap.cpp' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/DrawingContext.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/DrawingContext.cpp" 'Building file: ../System/Graphics/Font.cpp' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/FileBitmap.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/FileBitmap.cpp" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Font.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Font.cpp" "..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign 'Finished building: ../System/Graphics/Bitmap.cpp' ' ' "..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign 'Building file: ../System/Graphics/GrObject.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/GrObject.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/GrObject.cpp" "..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign 'Finished building: ../System/Graphics/Font.cpp' ' ' 'Building file: ../System/Graphics/Line.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Line.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Line.cpp" 'Finished building: ../System/Graphics/FileBitmap.cpp' 'Finished building: ../System/Graphics/Canvas.cpp' ' ' ' ' "..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign 'Finished building: ../System/Graphics/Button.cpp' 'Building file: ../System/Graphics/Point.cpp' 'Building file: ../System/Graphics/Rectangle.cpp' ' ' 'Invoking: ARM Compiler' 'Finished building: ../System/Graphics/GrObject.cpp' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Point.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Point.cpp" 'Building file: ../System/Graphics/Size.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Rectangle.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Rectangle.cpp" 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Size.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Size.cpp" 'Building file: ../System/Graphics/Widget.cpp' 'Finished building: ../System/Graphics/Circle.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/Graphics/Widget.pp" --obj_directory="System/Graphics" --exceptions "../System/Graphics/Widget.cpp" ' ' 'Building file: ../System/FatFs/ff.c' "..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="System/FatFs/ff.pp" --obj_directory="System/FatFs" "../System/FatFs/ff.c" 'Finished building: ../System/Graphics/Color.cpp' ' ' 'Finished building: ../System/Graphics/Point.cpp' 'Building file: ../Peripherals/CPU.cpp' 'Finished building: ../System/Graphics/Size.cpp' ' ' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/CPU.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/CPU.cpp" ' ' 'Building file: ../Peripherals/EDMA.cpp' 'Invoking: ARM Compiler' 'Building file: ../Peripherals/GPIO.cpp' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/EDMA.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/EDMA.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/GPIO.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/GPIO.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored 'Finished building: ../System/Graphics/Rectangle.cpp' "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_per.h", line 139: warning #1557-D: white space between backslash and newline in line splice ignored "../Peripherals/CPU.cpp", line 111: warning #179-D: variable "FreqOut" was declared but never referenced 'Finished building: ../System/Graphics/DrawingContext.cpp' ' ' ' ' 'Building file: ../Peripherals/GPIOEvent.cpp' 'Building file: ../Peripherals/GPIOPin.cpp' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/GPIOEvent.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/GPIOEvent.cpp" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/GPIOPin.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/GPIOPin.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_per.h", line 139: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored 'Finished building: ../System/Graphics/Line.cpp' ' ' 'Building file: ../Peripherals/GPIOPinEvent.cpp' 'Finished building: ../Peripherals/CPU.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/GPIOPinEvent.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/GPIOPinEvent.cpp" ' ' 'Building file: ../Peripherals/I2C.cpp' "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/I2C.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/I2C.cpp" 'Finished building: ../System/Graphics/Widget.cpp' ' ' 'Building file: ../Peripherals/INTC.cpp' "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored 'Invoking: ARM Compiler' "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.H", line 335: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/INTC.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/INTC.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_per.h", line 139: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored 'Finished building: ../Peripherals/GPIOEvent.cpp' ' ' 'Building file: ../Peripherals/IntrHndlr.cpp' 'Finished building: ../Peripherals/EDMA.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/IntrHndlr.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/IntrHndlr.cpp" ' ' 'Finished building: ../Peripherals/INTC.cpp' 'Building file: ../Peripherals/LCDC.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/LCDC.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/LCDC.cpp" ' ' 'Building file: ../Peripherals/MMCD.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/MMCD.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/MMCD.cpp" 'Finished building: ../Peripherals/GPIOPinEvent.cpp' 'Finished building: ../Peripherals/GPIO.cpp' "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_per.h", line 139: warning #1557-D: white space between backslash and newline in line splice ignored ' ' "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_hs_mmcsd.h", line 102: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335X.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored 'Building file: ../Peripherals/PRCM.cpp' 'Invoking: ARM Compiler' ' ' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/PRCM.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/PRCM.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored 'Building file: ../Peripherals/PRCMADPLL.cpp' 'Finished building: ../Peripherals/IntrHndlr.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/PRCMADPLL.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/PRCMADPLL.cpp" ' ' 'Building file: ../Peripherals/PRCMClkDivider.cpp' "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_dpll.h", line 84: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_per.h", line 139: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/PRCMClkDivider.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/PRCMClkDivider.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored 'Finished building: ../Peripherals/PRCM.cpp' "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored ' ' 'Building file: ../Peripherals/PRCMClock.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/PRCMClock.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/PRCMClock.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_dpll.h", line 84: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_mpu.h", line 72: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_per.h", line 139: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_rtc.h", line 72: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored 'Finished building: ../Peripherals/MMCD.cpp' 'Finished building: ../System/FatFs/ff.c' ' ' ' ' 'Building file: ../Peripherals/PRCMClockDomain.cpp' 'Building file: ../Peripherals/PRCMModuleClock.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/PRCMClockDomain.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/PRCMClockDomain.cpp" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/PRCMModuleClock.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/PRCMModuleClock.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_mpu.h", line 72: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_per.h", line 139: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_rtc.h", line 72: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_mpu.h", line 72: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_per.h", line 139: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_rtc.h", line 72: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored 'Finished building: ../Peripherals/LCDC.cpp' ' ' 'Building file: ../Peripherals/UART.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/UART.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/UART.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_per.h", line 139: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored "../Peripherals/UART.cpp", line 2468: warning #176-D: expression has no effect 'Finished building: ../Peripherals/GPIOPin.cpp' ' ' 'Building file: ../Peripherals/USB.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Peripherals/USB.pp" --obj_directory="Peripherals" --exceptions "../Peripherals/USB.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_per.h", line 139: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_cm_wkup.h", line 125: warning #1557-D: white space between backslash and newline in line splice ignored "../Peripherals/USB.cpp", line 1644: warning #552-D: variable "ulDataToggle" was set but never used 'Finished building: ../Peripherals/PRCMClkDivider.cpp' ' ' 'Building file: ../Devices/Console.cpp' 'Finished building: ../Peripherals/I2C.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Devices/Console.pp" --obj_directory="Devices" --exceptions "../Devices/Console.cpp" ' ' 'Building file: ../Devices/Directory.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Devices/Directory.pp" --obj_directory="Devices" --exceptions "../Devices/Directory.cpp" 'Finished building: ../Peripherals/PRCMADPLL.cpp' 'Finished building: ../Devices/Directory.cpp' ' ' ' ' 'Building file: ../Devices/EEPROM24LC32A.cpp' 'Building file: ../Devices/FILE.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Devices/EEPROM24LC32A.pp" --obj_directory="Devices" --exceptions "../Devices/EEPROM24LC32A.cpp" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Devices/FILE.pp" --obj_directory="Devices" --exceptions "../Devices/FILE.cpp" 'Finished building: ../Peripherals/USB.cpp' 'Finished building: ../Devices/Console.cpp' ' ' ' ' 'Building file: ../Devices/Led.cpp' 'Building file: ../Devices/SDCard.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Devices/Led.pp" --obj_directory="Devices" --exceptions "../Devices/Led.cpp" 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Devices/SDCard.pp" --obj_directory="Devices" --exceptions "../Devices/SDCard.cpp" 'Finished building: ../Devices/FILE.cpp' ' ' 'Building file: ../Devices/USBStorage.cpp' 'Invoking: ARM Compiler' "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_hs_mmcsd.h", line 102: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Devices/USBStorage.pp" --obj_directory="Devices" --exceptions "../Devices/USBStorage.cpp" "../Devices/SDCard.cpp", line 156: warning #69-D: integer conversion resulted in a change of sign "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored 'Finished building: ../Peripherals/PRCMClockDomain.cpp' ' ' 'Building file: ../Devices/eMMC.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Devices/eMMC.pp" --obj_directory="Devices" --exceptions "../Devices/eMMC.cpp" 'Finished building: ../Devices/EEPROM24LC32A.cpp' ' ' "../Devices/USBStorage.cpp", line 253: warning #179-D: function "BPg::CPDMAAINTCConfigure" was declared but never referenced 'Building file: ../AddOns/BMP180.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="AddOns/BMP180.pp" --obj_directory="AddOns" --exceptions "../AddOns/BMP180.cpp" "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_hs_mmcsd.h", line 102: warning #1557-D: white space between backslash and newline in line splice ignored "../Devices/eMMC.cpp", line 148: warning #69-D: integer conversion resulted in a change of sign "../Devices/eMMC.cpp", line 346: warning #112-D: statement is unreachable "../AddOns/BMP180.cpp", line 169: warning #552-D: variable "pResetCmd" was set but never used 'Finished building: ../Devices/SDCard.cpp' ' ' 'Building file: ../AddOns/FT5X06.cpp' 'Finished building: ../Devices/USBStorage.cpp' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="AddOns/FT5X06.pp" --obj_directory="AddOns" --exceptions "../AddOns/FT5X06.cpp" 'Finished building: ../Peripherals/PRCMModuleClock.cpp' ' ' ' ' 'Building file: ../AddOns/HTU21D.cpp' 'Building file: ../AddOns/NHD70800480EFATXVCPT.cpp' 'Invoking: ARM Compiler' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="AddOns/HTU21D.pp" --obj_directory="AddOns" --exceptions "../AddOns/HTU21D.cpp" "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -mv7A8 --code_state=32 --abi=eabi -me -O0 --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/hw" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/include/armv7a/am335x" --include_path="C:/ti/AM335X_StarterWare_02_00_01_01/usblib/include" -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="AddOns/NHD70800480EFATXVCPT.pp" --obj_directory="AddOns" --exceptions "../AddOns/NHD70800480EFATXVCPT.cpp" 'Finished building: ../AddOns/BMP180.cpp' ' ' "..\AddOns\..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign 'Finished building: ../Peripherals/UART.cpp' "C:/ti/AM335X_StarterWare_02_00_01_01/include/hw/hw_control_AM335x.h", line 335: warning #1557-D: white space between backslash and newline in line splice ignored ' ' 'Finished building: ../Devices/eMMC.cpp' "..\AddOns\..\System\Graphics\DrawingContext.h", line 113: warning #69-D: integer conversion resulted in a change of sign ' ' 'Finished building: ../AddOns/NHD70800480EFATXVCPT.cpp' ' ' 'Finished building: ../AddOns/HTU21D.cpp' ' ' 'Finished building: ../AddOns/FT5X06.cpp' ' ' 'Finished building: ../Peripherals/PRCMClock.cpp' ' ' 'Finished building: ../Devices/Led.cpp' ' ' 'Building target: BPg.out' 'Invoking: ARM Linker' 'Flags: -mv7A8 --code_state=32 --abi=eabi -me -O0 -g --rtti --static_template_instantiation --gen_acp_xref --cpp_default --gen_acp_raw --define=am3359 --define=DEBUG --diag_warning=225 --display_error_number --diag_wrap=off -z -m"BPg.map" --heap_size=0x800 --stack_size=0x800 -i"C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/lib" -i"C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/include" --reread_libs --define=A8_CORE=1 --warn_sections --diag_wrap=off --display_error_number --xml_link_info="BPg_linkInfo.xml" --ram_model' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.5/bin/armcl" -@"ccsLinker.opt" -o "BPg.out" <Linking> warning #10247-D: creating output section ".ARM.extab" without a SECTIONS specification warning #10247-D: creating output section ".init_array" without a SECTIONS specification warning #10247-D: creating output section ".sysmem" without a SECTIONS specification warning #10247-D: creating output section ".ARM.exidx" without a SECTIONS specification 'Finished building target: BPg.out' ' ' **** Build Finished ****
Hello Paul,
I noticed sizeOfPixelArray is very large (2Gbytes). That may be causing the issue.
Stephen
Ok, I had thought you had also stepped over the new instruction. According to the assembly, SizeOfFile is located at an offset of 6 bytes in the struct and OffsetToPixelArray is located at an offset of 14 bytes in the struct. It seems the compiler is padding the struct with extra bytes. Shouldn't pack compress the struct?
stevenh said:Shouldn't pack compress the struct?
I'm thinking that was the reason why it exists... The BMP struct is defined and explained here and I cannot modify it.
I'm just wondering if there is another compiler and/or linker option that i've missed... This must be solvable...
Paul
What I meant is that it doesn't look like __attribute__ ((__packed__)) is causing the structure to be packed.
If it is actually packing the structure, then the assembly code shows that uint32_t sizeOfPixelArray = m_Bmp.SizeOfFile - m_Bmp.OffsetToPixelArray is translating to uint32_t sizeOfPixelArray = m_Bmp.Reserved_1 - m_Bmp.SizeOfHeader since Reserved_1 is at byte 6 and SizeOfHeader is at byte 14 in the structure.
Did you single step the assembly code?
Stephen
stevenh said:... since Reserved_1 is at byte 6 and SizeOfHeader is at byte 14 in the structure.
Careful, R4 seems to contain the this pointer (a Bitmap*). The BMP struct inside Bitmap is at offset 4 (I guess the virtual table pointer comes first), so offsets 6 and 14 really correspond to offsets 2 and 10 inside BMP, so that looks good.
Hello Stephen,
AFAICS, at the moment sizeOfPixelArray is calculated, R4 (0x8002A848) is the this-pointer (pointing to the FileBitmap instance). 4 bytes are reserved for the v-table pointer, so that the BMP structure starts @ 0x8002A84C. The value of OffsetToPixelArray is @ offset 0xE from the this-pointer, so that the asm-instruction
ldr r12, [r4, #0xe]
loads the value into R12.
But singlestepping in the Disassembly (Control + Shift + F5) imediatly puts the cpu in abort mode (CPSR mode 17)
I'm quite confident that it's a misaligned acces, but I don't have the experience to solve this problem atm.
Thanks for your time !
Paul.
Archaeologist said:What is the value of the CP15 register
I can see 155 CP15 registers. What should I look for?
Reading the other thread referenced by Archaeologist , my impression was that the Cortex-A8 could only handle an unaligned access when the MMU was enabled. Your debugger screen shots that that the CCS status is reporting that the MMU is off.Paul Van den Bergh said:I'm quite confident that it's a misaligned acces, but I don't have the experience to solve this problem atm.
The StarterWare functions MMUInit(), MMUMemRegionMap() and MMUEnable() can be used to configure and enable the MMU. i.e. suggest you try either:
-- Enabling the MMU before the unaligned access.
-- Access the unaligned structure elements as bytes, e.g. by using memcpy() to transfer between the un-aligned structure elements and local variables which are aligned.
Hi Chester,
I tested that earlier, and it worked, but then the same problem reoccured when accessing the pixels in the m_pPixel array.Chester Gillon said:Access the unaligned structure elements as bytes, e.g. by using memcpy() to transfer between the un-aligned structure elements and local variables which are aligned
After some research and following your suggestion, i added/changed the program :
static volatile unsigned int pageTable[4*1024]__attribute__((aligned(16*1024))); #define START_ADDR_DDR (0x80000000) #define START_ADDR_DEV (0x44000000) #define START_ADDR_OCMC (0x40300000) #define NUM_SECTIONS_DDR (512) #define NUM_SECTIONS_DEV (960) #define NUM_SECTIONS_OCMC (1) void main(void) { /* ** Define DDR memory region of AM335x. DDR can be configured as Normal ** memory with R/W access in user/privileged modes. The cache attributes ** specified here are, ** Inner - Write through, No Write Allocate ** Outer - Write Back, Write Allocate */ REGION regionDdr = { MMU_PGTYPE_SECTION, START_ADDR_DDR, NUM_SECTIONS_DDR, MMU_MEMTYPE_NORMAL_NON_SHAREABLE(MMU_CACHE_WT_NOWA, MMU_CACHE_WB_WA), MMU_REGION_NON_SECURE, MMU_AP_PRV_RW_USR_RW, (unsigned int*)pageTable }; /* ** Define OCMC RAM region of AM335x. Same Attributes of DDR region given. */ REGION regionOcmc = { MMU_PGTYPE_SECTION, START_ADDR_OCMC, NUM_SECTIONS_OCMC, MMU_MEMTYPE_NORMAL_NON_SHAREABLE(MMU_CACHE_WT_NOWA, MMU_CACHE_WB_WA), MMU_REGION_NON_SECURE, MMU_AP_PRV_RW_USR_RW, (unsigned int*)pageTable }; /* ** Define Device Memory Region. The region between OCMC and DDR is ** configured as device memory, with R/W access in user/privileged modes. ** Also, the region is marked 'Execute Never'. */ REGION regionDev = { MMU_PGTYPE_SECTION, START_ADDR_DEV, NUM_SECTIONS_DEV, MMU_MEMTYPE_DEVICE_SHAREABLE, MMU_REGION_NON_SECURE, MMU_AP_PRV_RW_USR_RW | MMU_SECTION_EXEC_NEVER, (unsigned int*)pageTable }; /* Initialize the page table and MMU */ MMUInit((unsigned int*)pageTable); /* Map the defined regions */ MMUMemRegionMap(®ionDdr); MMUMemRegionMap(®ionOcmc); MMUMemRegionMap(®ionDev); /* Now Safe to enable MMU */ MMUEnable((unsigned int*)pageTable);
Now I can access the unaligned uint32_t values.
Thanks for sharing your profound knowledge !!
Paul
Chester Gillon said:Your debugger screen shots that that the CCS status is reporting that the MMU is off.
For my own edification, how were you able to tell that from the screenshot?