HI!!
I declared 3 global var, i call it inside diferent task and every execution this var should be updates but not to do it. I have a 8051 under evaluation board. Maybe can be a problem of my small micro? What do u think about this?
Thanks
Maybe can be a problem of my small micro?
Most likely not. I would guess it is a problem with the code, but lacking the code it is hard to verify that.
What do u think about this?
I think that given the scarcity of information, any statement about the nature of the problem can be classified as speculation.
SPid iA void PIDa (void) _task_ A _priority_ 1 { Ua = UpdatePID (&iA, SPa, PVa, 1, 4); os_send_signal(WRITE); os_delete_task(A); }
iA is my global var that it is initialized into a task. This task is calling to the task A (top).
When UpdatePID funtion is executed the iA var not update.
You show a global variable of an unknown data type.
You show that you send the address of the variable to a function.
You do not show the function implementation
Exactly what do you think will be able to deduce from this?
I am not sure I understand what you are doing here: are you terminating the task that does your PID calculations just after one cycle? this is not the way to implemented a closed loop using a PID controller, of any controller whatsoever that is based on feedback.
Hi Tamir,
My idea is: - I have a WRITE task that initialize the PID task:
os_create_task(A); os_create_task(B); os_create_task(C); os_wait(K_SIG, WAIT_FOREVER,0); /* Espera hasta que algun PID actualice el valor */ os_clear_signal(WRITE);
This 3 task should update my global var called iAiBiC respectly.
After i send the result of the PIDs to serial port for comunications with a simulator.
Tamir!
How you implement a PID in a task to controller a system?? Thanks
javi, forget about your task for a moment. first of all you need conversion tables - for example, if you want to maintain constants speed of a system using a PID controller, assuming you have a speed sensor, you would translate your speed error (that is, set point minus actual speed) to desired current (based on the known properties of your system - speed control valve of some kind) and then again, convert that to a duty cycle (based on the properties on a valve that regulate the speed). and of course, this must be done for as long as speed control is required, so that the system can make continuous adjustments! please note that you do not need a task to do this. if you choose to use one - do not terminate it unless you want to stop closed loop control.
View all questions in Keil forum