ZUNO_SETUP_DEBUG_MODE() missing ?

Discussion about Z-Uno product. Visit http://z-uno.z-wave.me for more details.
Post Reply
pjpankhurst
Posts: 31
Joined: 07 Sep 2017 00:40

ZUNO_SETUP_DEBUG_MODE() missing ?

Post by pjpankhurst »

Hi

ZUNO_SETUP_DEBUG_MODE(DEBUG_ON);

produces the following error:

use of undeclared identifier 'ZUNO_SETUP_DEBUG_MODE'

I've checked through the header files and can only find ZUNO_DEBUG_ON()

Has the name of this changed, or is there a macro missing?

Cheers
Paul
p0lyg0n1
Posts: 242
Joined: 04 Aug 2016 07:14

Re: ZUNO_SETUP_DEBUG_MODE() missing ?

Post by p0lyg0n1 »

This have to work in the sketch file:

Code: Select all

// --- beginning of the file
ZUNO_SETUP_DEBUG_MODE(TRUE);
// ...
ZUNO_SETUP_CHANNELS(...);
pjpankhurst
Posts: 31
Joined: 07 Sep 2017 00:40

Re: ZUNO_SETUP_DEBUG_MODE() missing ?

Post by pjpankhurst »

I just tried adding the exact same line of code today and it compile fine - weird !
Post Reply