hi everyone and please help me on this problem.
I create 1 class, so-called Employee class, it has a member Name which is declared as TBuF<100> and a Init() method (both is Public). in the Init(), i hardcode the name.
In another class, i try to retrieve the Name (show in the console) by first calling the Init() and then do like that
employee.Init();//hard code the name (static method)
_LIT(KName,"Name is %S"😉;
RDebug::Print(KName,employee.Name);
I get the KERN-EXEC 3 panic. Please help me on this problem.
Thank you very much.