This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC1310: Using CC1310 API with NOROM definition.

Part Number: CC1310

Gentlemen!
Sorry for bothering you. I am a beginer and try to use CC1310.
(NoRTOS, API, IAR for ARM)

There is the simplest prigramm.

//------------------------------------------------------------

#define DRIVERLIB_NOROM // <=== There is a source of the error.
// Proramm has no errors without the definition,
// But it coild not simulate bacause of API ROM functions.
//
#include <ioc.h>
#include <gpio.h>
#include <osc.h>
#include <cpu.h>
//
// Main functuion.
//
int main()
{
OSCXHfPowerModeSet(HIGH_POWER_XOSC); // Set of the high power mode for quartz.
IOCPortConfigureSet(IOID_0,
IOC_PORT_GPIO,
IOC_IOMODE_NORMAL | IOC_NO_WAKE_UP | IOC_NO_EDGE |
IOC_INT_DISABLE | IOC_NO_IOPULL |
IOC_INPUT_DISABLE | IOC_HYST_DISABLE |
IOC_CURRENT_2MA | IOC_STRENGTH_AUTO);
IOCPinTypeGpioOutput (IOID_0); // Configure of the Port IO0.
GPIO_writeDio(IOID_0, 1); // Test write of the 1 value to IO0.

while (1);
}


//------------------------------------------------------------

I try to use API no ROM for search of the driver work with IAR Simulator.
As decribed in header I insert the definition DRIVERLIB_NOROM.
As a result I received of the error: there are no a definition for NOROM_IOCPortConfigureSet and errors for other NOROM functions.
I try to find the function NOROM_IOCPortConfigureSet manually in API source and did not find.

Could I use API functions without using CC1310 ROM?
Could you help me? Where is my error?