parent
461903f7e4
commit
ca7308e910
|
@ -690,7 +690,7 @@ struct EtbThread final : public PeriodicController<512> {
|
|||
}
|
||||
};
|
||||
|
||||
static EtbThread etbThread;
|
||||
static EtbThread etbThread CCM_OPTIONAL;
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -705,7 +705,7 @@ void initEngineContoller(DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
|||
#define RAM_UNUSED_SIZE 4000
|
||||
#endif
|
||||
#ifndef CCM_UNUSED_SIZE
|
||||
#define CCM_UNUSED_SIZE 2000
|
||||
#define CCM_UNUSED_SIZE 300
|
||||
#endif
|
||||
static char UNUSED_RAM_SIZE[RAM_UNUSED_SIZE];
|
||||
static char UNUSED_CCM_SIZE[CCM_UNUSED_SIZE] CCM_OPTIONAL;
|
||||
|
|
|
@ -162,8 +162,8 @@ private:
|
|||
CANRxFrame m_buffer;
|
||||
};
|
||||
|
||||
static CanRead canRead;
|
||||
static CanWrite canWrite;
|
||||
static CanRead canRead CCM_OPTIONAL;
|
||||
static CanWrite canWrite CCM_OPTIONAL;
|
||||
|
||||
static void canInfo(void) {
|
||||
if (!isCanEnabled) {
|
||||
|
|
Loading…
Reference in New Issue