Chapter 3. RTComponent
Table of Contents
1. InPort
InPort_getType
— Get DataType of InPort
InPort_isNew
— Polling function of Inport. Check if InPort received the data.
InPort_poll
— Polling function of Inport. Check if InPort received the data.
InPort_read
— Read Data From InPort.
2. OutPort
OutPort_getType
— Get DataType of OutPort
OutPort_write
— Write Data to OutPort
3. RTC
RTC
— Handle of Scilab's RT-Component
RTC_addInPort
— Append InPort to RT-component
RTC_addOutPort
— Append OutPort to RT-component
RTC_create
— Create RT-Component
RTC_deleteInPort
— Delete InPort from RT-component
RTC_deleteOutPort
— Delete OutPort from RT-component
RTC_destroy
— Destroy RT-Component
RTC_getInPort
— Get InPort Handle RT-component handle by Name
RTC_getOutPort
— Get OutPort Handle RT-component handle by Name
RTC_registerInPort
— Append InPort to RT-component. This function will be vanish. Please use RTC_addInPort instead.
RTC_registerOutPort
— Append OutPort to RT-component. This function will vanish in the future. Please use RTC_addOutPort instead.
1. InPort