Search the Community
Showing results for tags '432'.
-
Hi, I just got the MSP432 and am really excited to start working with this board. I'm running Windows 10 on an ACER Aspire 64 bit machine. Unfortunately when I go to upload a program using Energia the port menu is grayed out. I used to have this problem with the arduino on the arduino IDE until I downloaded the FTDI drivers from: http://www.ftdichip.com/Drivers/VCP.htm The following picture shows the IDE as I see it now: I followed the instructions for installing the XDS110 drivers according to the windows install guide for the MSP432. Checking the device manager I se
- 6 replies
-
- grey
- unavalible
- (and 6 more)
-
Hi, guys, I cannot seem to be able to stop the watchdog on the Energia + MSP432 combo. (MSP-EXP432P401R Rev 1.0 + Energia 0101E0016 on Win7-64bit) // My minimal code buzzes the red led at 2MHz: #include "msp432p401r.h" void setup() { WDTCTL = WDTPW | WDTHOLD; // Stop WDT pinMode(RED_LED, OUTPUT); // configure pin } void loop() { while (1) { P2OUT ^= 0x01; P2OUT ^= 0x01; // flip pin twice }; } The 2MHz output signal freezes for 12us in either "1" or "0" state every 1ms. WDTHOLD bit does not help (in fact, any WDTCTL actions seem to be ignored).