Jump to content
43oh

Rei Vilo

Members
  • Content Count

    2,127
  • Joined

  • Last visited

  • Days Won

    140

Posts posted by Rei Vilo

  1. There are many options. 

    • use the programmer-debugger of another LaunchPad
    • use a third-party programmer-debugger like the Segger J-Link or the TI XDS110

    Obviously, your board needs to feature a 5x2 0.05" SWD connector. Similarly, you may need to use specific software, like the Segger J-Link tools or OpenOCD  

    Learn more at https://embeddedcomputing.weebly.com/xds110-debug-probe-with-energytrace8203.html and https://embeddedcomputing.weebly.com/segger-j-link-with-launchpad-msp432.html

  2. You're lucky, you're using a library which is fully documented, so RTFM (link)!

    Otherwise, just have a look at the header file. 

        ///
        /// @brief	Constructor
        /// @note   For Sharp Memory LCD BoosterPack
        /// @param  model default=SHARP_96 for compatibility, SHARP_128
        /// @code
        ///     LCD_SharpBoosterPack_SPI myScreen(SHARP_96);
        /// @endcode
        ///
        LCD_SharpBoosterPack_SPI(uint8_t model = SHARP_96);

    Are you specifying which screen you want to use?

  3. The boards.txt file shouldn't have the following values set to 

    • ccs.device_id MSP432P4111
    • upload.maximum_size 2 MB
    • upload.maximum_data_size 256 KB
    ##############################################################
    menu.cpu=Processor
    MSP-EXP432P4111.ccs.device_id=MSP432P4111
    MSP-EXP432P4111.vid.0=0x2341
    MSP-EXP432P4111.pid.0=0x0c9f
    MSP-EXP432P4111.name=RED LaunchPad w/ msp432p4111 EMT (48MHz)
    MSP-EXP432P4111.build.mcu=cortex-m4
    MSP-EXP432P4111.build.f_cpu=48000000L
    MSP-EXP432P4111.build.core=msp432p
    MSP-EXP432P4111.build.variant=MSP_EXP432P4111
    MSP-EXP432P4111.build.board=MSP_EXP432P4111
    MSP-EXP432P4111.build.ldscript=linker.cmd
    MSP-EXP432P4111.upload.tool=dslite
    MSP-EXP432P4111.upload.protocol=dslite
    MSP-EXP432P4111.upload.maximum_size=2097152
    MSP-EXP432P4111.upload.maximum_data_size=262144

     

×
×
  • Create New...