SPI.h Doesn't Work With Nano BLE 33 · Issue #117 - GitHub

Skip to content Dismiss alert {{ message }} / ArduinoCore-mbed Public
  • Notifications You must be signed in to change notification settings
  • Fork 222
  • Star 399
  • Code
  • Issues 248
  • Pull requests 31
  • Actions
  • Projects
  • Security
  • Insights
Additional navigation options SPI.h doesn't work with Nano BLE 33 #117New issueNew issueClosedClosedSPI.h doesn't work with Nano BLE 33#117@marcoumlaut

Description

@marcoumlautmarcoumlautopened on Jan 13, 2021

I've used an Arduino Nano with SPI.h to make a SPI Slave. Now I have the Nano 33 BLE and want to use the same code, but there are Errors when I build the file. Does anyone have an idea what's the issue?

The Code:

#include <SPI.h> volatile byte c; volatile byte command = 0; void setup (void) { // have to send on master in, *slave out* pinMode(MISO, OUTPUT); pinMode(MOSI, INPUT); // turn on SPI in slave mode SPCR |= _BV(SPE); // turn on interrupts SPI.attachInterrupt(); Serial.begin(115200); } // end of setup // SPI interrupt routine ISR (SPI_STC_vect) { c = SPDR; Serial.println(SPDR); //SPDR = 8; } // end of interrupt service routine (ISR) SPI_STC_vect void loop (void) { if (digitalRead (SS) == HIGH) command = 0; } // end of loop The Error: src\main.cpp: In function 'void setup()': src\main.cpp:15:3: error: 'SPCR' was not declared in this scope SPCR |= _BV(SPE); ^~~~ src\main.cpp:15:3: note: suggested alternative: 'SPI' SPCR |= _BV(SPE); ^~~~ SPI src\main.cpp:15:15: error: 'SPE' was not declared in this scope SPCR |= _BV(SPE); ^~~ src\main.cpp:15:15: note: suggested alternative: 'SPI' SPCR |= _BV(SPE); ^~~ SPI src\main.cpp:15:11: error: '_BV' was not declared in this scope SPCR |= _BV(SPE); ^~~ src\main.cpp: At global scope: src\main.cpp:24:5: error: expected constructor, destructor, or type conversion before '(' token ISR (SPI_STC_vect) ^ *** [.pio\build\nano33ble\src\main.cpp.o] Error 1

Metadata

Metadata

Assignees

No one assigned

Labels

No labelsNo labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

You can’t perform that action at this time.

Tag » Arduino Nano 33 Ble Spi Example