Undefined extern name '_T2SI' ERROR

General discussion on RSC-4x mikroC.
Post Reply
Author
Message
steved
Posts: 2
Joined: 14 Nov 2006 23:11

Undefined extern name '_T2SI' ERROR

#1 Post by steved » 14 Nov 2006 23:14

I get the "Undefined extern name '_T2SI'" and "Undefined extern
name 'nn_samsung'" errors. I feel that I am very
close to being able to work with the VRstamp if I can resolve these
errors. Any help would be tremendous!

I am using FC_2_0_14 and C:\Phyton\Proj-se\1_10_05\ . Here is my simple
code as well:

#include <techlib.h>
#include "demo_io.h"

#include "C:\Program
Files\Mikroelektronika\RSC4X-mikroC\Examples\__Sensory_Examples\samsung_app\speech\comm_rscApp_samsung.h"
#define NNET (long)&nn_samsung

long grammar;
uchar error;
uchar vocab;
uchar wordID;
PARAMETERPASS results;

void main(void)
{

while(1)
{
grammar = (long)&gsearch_comm_samsung;
error =
_T2SI((long)&nn_samsung,grammar,2,0,T2SI_DEFAULT_TRAILING,
&results);


switch (error)
{
case ERR_OK:
wordID = results.pp_b; // get ID of the recognized word

if (wordID < 7)
{
// do stuff here
}
else
{
p1out = 0;
}
break;
case ERR_RECOG_MID_CONF:

wordID = results.pp_b; // get ID of the recognized word

if (wordID < 7)
{
// do stuff here
}
else
{
//p1out = 0;
}
break;
}
}
}//end main

User avatar
milan
mikroElektronika team
Posts: 1013
Joined: 04 May 2006 16:36
Contact:

#2 Post by milan » 15 Nov 2006 10:37

Hi,

It seems that the problem is with the including files and with search paths.
You contacted us via email (about this prob), we will check your project.

Post Reply

Return to “RSC-4x mikroC General”