/* ; Project: Open Vehicle Monitor System ; Date: 14th September 2020 ; ; Changes: ; 1.0 Initial release ; ; (C) 2011 Michael Stegen / Stegen Electronics ; (C) 2011-2018 Mark Webb-Johnson ; (C) 2011 Sonny Chen @ EPRO/DX ; (C) 2020 Chris Staite ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ; copies of the Software, and to permit persons to whom the Software is ; furnished to do so, subject to the following conditions: ; ; The above copyright notice and this permission notice shall be included in ; all copies or substantial portions of the Software. ; ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ; THE SOFTWARE. */ #ifndef __RE_TOOLS_PID_H__ #define __RE_TOOLS_PID_H__ #include "can.h" #include "freertos/task.h" #include "freertos/queue.h" #include #include #include #include class OvmsReToolsPidScanner { public: OvmsReToolsPidScanner(canbus* bus, uint16_t ecu, uint16_t rxid_low, uint16_t rxid_high, uint8_t polltype, int start, int end, int step, uint8_t timeout); ~OvmsReToolsPidScanner(); bool Complete() const { return m_currentPid > m_endPid; } uint16_t Ecu() const { return m_id; } int Start() const { return m_startPid; } int End() const { return m_endPid; } int Current() const { return m_currentPid; } void Output(OvmsWriter* writer) const; private: void Ticker1(std::string event, void* data); void FrameCallback(const CAN_frame_t* frame, bool success); void IncomingPollFrame(const CAN_frame_t* frame); void SendNextFrame(); static void Task(void *self); void Task(); // A callback for when the frame has been sent std::function m_frameCallback; /// The CAN bus that is being used canbus* m_bus; /// The ID of the ECU to scan uint16_t m_id; /// The response ID range uint16_t m_rxid_low; uint16_t m_rxid_high; /// The poll/service type uint8_t m_pollType; /// The PID to start scanning from int m_startPid; /// The PID to stop scanning at int m_endPid; /// The PID step size int m_pidStep; /// The current PID being scanned int m_currentPid; /// The current ticker value uint32_t m_ticker; /// Response timeout in seconds uint8_t m_timeout; /// When the last frame was sent uint32_t m_lastFrame; /// Scan start & last response time time_t m_startTime; time_t m_lastResponseTime; /// The number of bytes expected on a multi-frame response uint16_t m_mfRemain; /// The handle to the CAN task handler TaskHandle_t m_task; /// The handle to the CAN receive queue QueueHandle_t m_rxqueue; /// The found PIDs and the current content std::vector>> m_found; /// A mutex over m_found mutable OvmsMutex m_foundMutex; }; #endif // __RE_TOOLS_PID_H__