c++ - 没有调用未解析的重载函数类型的匹配函数

标签 c++ arduino arduino-due

首先,我是 C++ 的新手,所以我的问题可能已经在某个地方得到了解答,但我找不到直接的答案。 我正在为我的硬件创建一个简单的库。我正在使用在 Arduino IDE 上运行良好的调度程序库(here 是示例),但是当我使用自己的 IDE (Atom+PlatformIO) 编译代码时出现此错误:

lib\SRF08\SRF08.cpp:43:30: error: no matching function for call to 'SchedulerClass::startLoop(<unresolved overloaded functi
on type>)'

我删除了一些代码,但如果您需要其余代码,我可以将其放入。

SRF08.h

#ifndef SRF08_h
#define SRF08_h

#include "Arduino.h"

class SRF08
{
public:
    //main constructor
    SRF08(uint8_t address=address_1);
    // init the sensor
    void begin(void);

    //change sensor address from oldAddress to newAddress
    void changeAddress(uint16_t oldAddress, uint16_t newAddress);
    // scan for a single sensor address
    int8_t scanner(void);
    // scan for multiple sensors and return the table of addresses
    struct table_value scan_all(void);
    uint16_t output_value;
    void read(void);
private:
    // the main I2C address of Sensor
    uint16_t _address;
    //read sansor value base on centimiter
};
#endif

SRF08.cpp

#include "Wire.h"
#include "SRF08.h"
// Include Scheduler since we want to manage multiple tasks.
#include "Scheduler.h"

SRF08::SRF08(uint8_t address)
{
    //main constructor, address is the sensor address if u dont know it try scanner first
    //address must be an integer number between 1 to 9
    if (address == 1) _address = address_1;
     else _address = address_1;

}

void SRF08::begin(){
    //initilize I2C
    Wire.begin();
    output_value = 0;
    Scheduler.startLoop(SRF08::read);  //here is my error
}



void SRF08::read(){
    int reading = 0;
    // step 1: instruct sensor to read echoes
    Wire.beginTransmission(_address); // transmit to device #112 (0x70)
    // the address specified in the datasheet is 224 (0xE0)
    // but i2c adressing uses the high 7 bits so it's 112
    Wire.write(byte(0x00));      // sets register pointer to the command register (0x00)
    Wire.write(byte(0x51));      // command sensor to measure in "inches" (0x50)
    // use 0x51 for centimeters
    // use 0x52 for ping microseconds
    Wire.endTransmission();      // stop transmitting

    // step 2: wait for readings to happen
    delay(70);                   // datasheet suggests at least 65 milliseconds

    // step 3: instruct sensor to return a particular echo reading
    Wire.beginTransmission(_address); // transmit to device #112
    Wire.write(byte(0x02));      // sets register pointer to echo #1 register (0x02)
    Wire.endTransmission();      // stop transmitting

    // step 4: request reading from sensor
    Wire.requestFrom(_address, 2);    // request 2 bytes from slave device #112

    // step 5: receive reading from sensor
    if (2 <= Wire.available()) { // if two bytes were received
        reading = Wire.read();  // receive high byte (overwrites previous reading)
        reading = reading << 8;    // shift high byte to be high 8 bits
        reading |= Wire.read(); // receive low byte as lower 8 bits
        output_value = reading;   // print the reading
    }
    //yield();
}

调度器.h

#ifndef _SCHEDULER_H_
#define _SCHEDULER_H_

#include <Arduino.h>

extern "C" {
    typedef void (*SchedulerTask)(void);
    typedef void (*SchedulerParametricTask)(void *);
}

class SchedulerClass {
public:
    SchedulerClass();
    static void startLoop(SchedulerTask task, uint32_t stackSize = 1024);
    static void start(SchedulerTask task, uint32_t stackSize = 1024);
    static void start(SchedulerParametricTask task, void *data, uint32_t stackSize = 1024);

    static void yield() { ::yield(); };
};

extern SchedulerClass Scheduler;

#endif

调度程序.cpp

#include "Scheduler.h"

extern "C" {

#define NUM_REGS 10 // r4-r11, sp, pc

typedef struct CoopTask {
    uint32_t regs[NUM_REGS];
    void* stackPtr;
    struct CoopTask* next;
    struct CoopTask* prev;
} CoopTask;

static CoopTask *cur = 0;
...
void yield(void) {
    coopDoYield(cur);
}

}; // extern "C"

SchedulerClass::SchedulerClass() {
    coopInit();
}

static void startLoopHelper(void *taskData) {
    SchedulerTask task = reinterpret_cast<SchedulerTask>(taskData);
    while (true)
        task();
}

void SchedulerClass::startLoop(SchedulerTask task, uint32_t stackSize) {
    coopSpawn(startLoopHelper, reinterpret_cast<void *>(task), stackSize);
}

static void startTaskHelper(void *taskData) {
    SchedulerTask task = reinterpret_cast<SchedulerTask>(taskData);
    task();
}

void SchedulerClass::start(SchedulerTask task, uint32_t stackSize) {
    coopSpawn(startTaskHelper, reinterpret_cast<void *>(task), stackSize);
}

void SchedulerClass::start(SchedulerParametricTask task, void *taskData, uint32_t stackSize) {
    coopSpawn(task, taskData, stackSize);
}

SchedulerClass Scheduler;

最佳答案

感谢@Someprogrammerdude 的帮助。我需要将 read 函数声明为静态的。

SRF08.h

#ifndef SRF08_h
#define SRF08_h

#include "Arduino.h"

class SRF08
{
public:
    //main constructor
    SRF08(uint8_t address=address_1);
    // init the sensor
    void begin(void);

    //change sensor address from oldAddress to newAddress
    void changeAddress(uint16_t oldAddress, uint16_t newAddress);
    // scan for a single sensor address
    int8_t scanner(void);
    // scan for multiple sensors and return the table of addresses
    struct table_value scan_all(void);
    static uint16_t output_value;
    static void read(void);
    static uint16_t static_address;

private:
    // the main I2C address of Sensor
    uint16_t _address;
    //read sansor value base on centimiter
};
#endif

SRF08.cpp

#include "Wire.h"
#include "SRF08.h"
// Include Scheduler since we want to manage multiple tasks.
#include "Scheduler.h"

//initilize static members

uint16_t SRF08::output_value;
uint16_t SRF08::static_address;

SRF08::SRF08(uint8_t address)
{
    //main constructor, address is the sensor address if u dont know it try scanner first
    //address must be an integer number between 1 to 9
    if (address == 1) _address = address_1;
    else _address = address_1;
    static_address = _address;
    //begin();
}

void SRF08::begin(){
    //initilize I2C
    Wire.begin();
    output_value = 0;
    Scheduler.startLoop(read);  //here is my error
}


void SRF08::read(){
    int reading = 0;
    // step 1: instruct sensor to read echoes
    Wire.beginTransmission(static_address); // transmit to device #112 (0x70)
    // the address specified in the datasheet is 224 (0xE0)
    // but i2c adressing uses the high 7 bits so it's 112
    Wire.write(byte(0x00));      // sets register pointer to the command register (0x00)
    Wire.write(byte(0x51));      // command sensor to measure in "inches" (0x50)
    // use 0x51 for centimeters
    // use 0x52 for ping microseconds
    Wire.endTransmission();      // stop transmitting

    // step 2: wait for readings to happen
    delay(70);                   // datasheet suggests at least 65 milliseconds

    // step 3: instruct sensor to return a particular echo reading
    Wire.beginTransmission(static_address); // transmit to device #112
    Wire.write(byte(0x02));      // sets register pointer to echo #1 register (0x02)
    Wire.endTransmission();      // stop transmitting

    // step 4: request reading from sensor
    Wire.requestFrom(static_address, 2);    // request 2 bytes from slave device #112

    // step 5: receive reading from sensor
    if (2 <= Wire.available()) { // if two bytes were received
        reading = Wire.read();  // receive high byte (overwrites previous reading)
        reading = reading << 8;    // shift high byte to be high 8 bits
        reading |= Wire.read(); // receive low byte as lower 8 bits
        output_value = reading;   // print the reading
        //output_value = reading;
    }
    yield();
}

关于c++ - 没有调用未解析的重载函数类型的匹配函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47900395/

相关文章:

c++ - 试图在 Qt QTreeView 中选择整行

c++ - 在 Linux 上的 C++ 应用程序中的 C 接口(interface)上为函数别名

c - 用于读取的原子 block 与 ARM SysTicks

embedded - Arduino 由于 PC 高速 USB 通信

gcc - SysTick->LOAD 与 SysTick->CALIB

c++ - 构建没有 CRT 和默认 header 的控制台应用程序?

c++ - 读取大文件时杀死 std::thread

c - 使用 strtok 解析字符串数组

c++ - 用毫秒替换延迟

python - 从 Python 3 控制 Arduino 继电器