Tool/software:
Hi,
In SDK9.10, the #if condition has been changed so that an h file that does not exist in SDK9.10 is included.
As a result, the following build error is occurring.
Fatal Error[Pe1696] cannot open source file tidriversaesctrAESCTRCC26XX.h Ctisimplelink_lowpower_f3_sdk_9_10_00_83sourcetidriversaesctrdrbgAESCTRDRBGXX.c 64
The changes to the source code are listed below, but is this an expected change?
If so, please tell me how to avoid the build error.
■SDK9.10:simplelink_lowpower_f3_sdk_9_10_00_83\source\ti\drivers\aesctrdrbg\AESCTRDRBGXX.c
========================Source Code==========================
61 #if (DeviceFamily_PARENT == DeviceFamily_PARENT_CC23X0)
62 #include <ti/drivers/aesctr/AESCTRLPF3.h>
63 #else
64 #include <ti/drivers/aesctr/AESCTRCC26XX.h>
65 #endif
============================================================
■SDK8.30:simplelink_lowpower_f3_sdk_8_30_00_11_ea\source\ti\drivers\aesctrdrbg\AESCTRDRBGXX.c
========================Source Code==========================
61 #if (DeviceFamily_PARENT == DeviceFamily_PARENT_CC23X0) || (DeviceFamily_PARENT == DeviceFamily_PARENT_CC27XX)
62 #include <ti/drivers/aesctr/AESCTRLPF3.h>
63 #else
64 #include <ti/drivers/aesctr/AESCTRCC26XX.h>
65 #endif
============================================================