I recently purchased Sparkfun pulse sensor MAX32664 and interfaced with arduino mega and buno beetle ble, and got good result with your example code. But while interfacing with arduino nano BLE module, it arises a compilation error that
virtual size_t write(int data) with that of virtual size_t write (uint8_t data)
That happens when the write(int)
and write(uint8_t)
function signatures conflict in the Print
class, which are inherited by HardwareSerial
and SoftwareSerial
. This often happens when using different Arduino core versions or if a library is expecting a specific signature…those boards use different cores
Thing to try:
- Explicitly Cast to
uint8_t
If the error is in your code, modify the call towrite()
by explicitly casting the argument:
Serial.write((uint8_t)data);
- Check Libraries
- Ensure that the SparkFun MAX32664 library is compatible with the Arduino Nano BLE (which uses the nRF52840 chip).
- Some libraries assume an AVR-based core, while the Nano BLE uses the Mbed OS-based core.
- Update or Modify the Library
In the code, find thewrite()
function definition and modify it to useuint8_t
instead ofint
. - Use an Alternative Serial Class
If you’re usingSoftwareSerial
, consider usingHardwareSerial
orSerial1
(if available) to avoid conflicts with thewrite()
function.