Posted on July 12, 2007 at 08:24Thanks a lot for your reply. To get an interrupt on TI1 and TI2 I added: TIM_Init(TIM0, &tim); TIM0->SCR = (1 << 14); TIM0->IMCR = (0 << 0) | // IC1S=TI1 (0 << 1) | // IC2S=TI2 (1 << 2) | // IC1 Enable (1 << 4)...
Posted on June 13, 2007 at 07:33Quote:On 07-06-2007 at 16:36, Anonymous wrote: Hi Alexander, Both TI1 & TI2 could be used as implemented in 75x_tim.c driver. There is no hardware required; the STR75x software library is developed independently from...
Posted on June 06, 2007 at 11:16 I would like to count the flash of signals connected to TI1 as well as TI2. The example attached tries to do that, but in my example it works only with TI2. Looking into 75x_tim.c it seems like either TI1 or TI2 ...
Posted on July 19, 2006 at 08:55Hello I am working on a byte read routine. I want to read a single byte from the EEprom. I found this information in the datasheet for M24C32-: ''... The bus master must not acknowledge the byte, and terminates the tr...