Closed robertinant closed 8 years ago
Reproduced with the Sketch below:
// most launchpads have a red LED
#define LED 11
const int slaveSelectPin = 2;
//see pins_energia.h for more LED definitions
//#define LED GREEN_LED
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(LED, OUTPUT);
SPI.begin();
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(LED, HIGH); // turn the LED on (HIGH is the voltage level)
delay(10); // wait for a second
digitalWrite(LED, LOW); // turn the LED off by making the voltage LOW
delay(10); // wait for a second
}
From @rei-vilo on September 22, 2015 18:41
Referenced in #700
@rei-vilo I am no longer able to reproduce this with msp432 core 1.3.3. Can you please verify?
I confirm, it works now.
Thanks. Will close it then
From @rei-vilo on September 20, 2015 15:14
There seems to be a problem with GPIO and SPI on the MSP432.
P3_5
32
P3_7
31
P3_6
11
panel ON
P5_1
33
Copied from original issue: energia/Energia#722