Wireless Communication Library Support Forum

Frameworks => WiFi Framework => Topic started by: 2inept on January 09, 2018, 12:13:27 PM

Title: wclError
Post by: 2inept on January 09, 2018, 12:13:27 PM
Occasionally I get an error when SoftApp is starting so I was adding in a switch statement to get a friendly error message back.

However WCL_E_BASE has the same Error number as WCL_E_INVALID_ARGUMENT but a different string meaning, there are several errors with the same error ID.

Is this correct?

Thanks
Chris
Title: Re: wclError
Post by: Mike Petrichenko on January 09, 2018, 12:29:15 PM
Hello,

WCL_E_BASE and other _BASE error codes mean nothing. It is just a base number to define other errors that are defined as *_BASE + XXXX. So simple ignore any _BASE error codes.
Title: Re: wclError
Post by: 2inept on January 09, 2018, 12:40:17 PM
OK Thanks