You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
464 B
23 lines
464 B
#include <stddef.h>
|
|
#include <stdio.h>
|
|
|
|
#include "a8000_protocol\zcan_protocol_parser.hpp"
|
|
#include "sdk/chip/chip.hpp"
|
|
#include "sdk/components/zcancmder/zcanreceiver.hpp"
|
|
#include "sdk/os/zos.hpp"
|
|
|
|
namespace iflytop {
|
|
|
|
class GService {
|
|
ZCanReceiver zcanreceiver;
|
|
ZCanProtocolParser zcan_protocol_parser;
|
|
|
|
public:
|
|
void initialize();
|
|
|
|
static GService* inst();
|
|
|
|
ZCanReceiver* getZCanReceiver() { return &zcanreceiver; }
|
|
};
|
|
|
|
} // namespace iflytop
|