I have a problem with the spline function.
I'd want to know the continouos function that interpolates my datas in order to calculate the intermediate values between two datas
ex.
x=[50 100 150]
y=[300.12 302.24 306.08]
f=spline(x,y)
What is the value of f(60.35) without adding any datas to...
Does anyone ever use the microcontroller 2144 of Hitachi?
I have this problem: 8bit timer doesn't start
I try to configure the timer register as below
TMR.TCR0.BYTE = 0x4A;
TMR.TCSR0.BYTE = 0x00;
to have an interrupt request and to clear the timer register on compare-match A.
I tried...