Mercurial > public > ostc_companion
annotate crc_wrapper.h @ 12:ac837fe1d590 default tip
Switch implementation for reqex class and added RFCOMM as label for Bluetooth based connection by Linux
| author | Ideenmodellierer |
|---|---|
| date | Mon, 12 Jan 2026 13:58:41 +0000 |
| parents | 6fba58c4964b |
| children |
| rev | line source |
|---|---|
| 5 | 1 #ifndef CRC_WRAPPER_H |
| 2 #define CRC_WRAPPER_H | |
| 3 | |
| 4 extern "C" { | |
| 5 #include "crcmodel.h" | |
| 6 } | |
| 7 #include <QObject> | |
| 8 | |
| 9 class CrcWrapper : public QObject | |
| 10 { | |
| 11 Q_OBJECT | |
| 12 public: | |
| 13 explicit CrcWrapper(QObject *parent = nullptr); | |
| 14 | |
| 15 void init(p_cm_t p_cm); | |
|
11
6fba58c4964b
Minor changes done by automatic style checker
Ideenmodellierer
parents:
5
diff
changeset
|
16 void cm_next(p_cm_t p_cm, int ch); |
| 5 | 17 |
| 18 uint32_t CRC_CalcBlockCRC(uint32_t *buffer, uint32_t words); | |
| 19 }; | |
| 20 | |
| 21 #endif // CRC_WRAPPER_H |
