Help
Advanced Member level 2

Use pointer in uC
Hi,
Q1) Do you know how to solve the below problem? without adding any new declaration, is it possible?
Q2) how to use pointer to reduce the microcontroller RAM size? Do you got any exemple program?
Thank You
Hi,
Q1) Do you know how to solve the below problem? without adding any new declaration, is it possible?
Code:
void fc1(unsigned char *xp)
{
fc2(&xp);
...
..
}
void fc2(unsigned char *yp)
{
...
..
}
Q2) how to use pointer to reduce the microcontroller RAM size? Do you got any exemple program?
Thank You