123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901 |
- /*""FILE COMMENT""*******************************************************
- * System Name : Interrupt program for RX62Nx
- * File Name : Interrupt_IIC.c
- * Version : 1.02
- * Contents : Interrupt handlers for all IIC channels
- * Customer :
- * Model :
- * Order :
- * CPU : RX
- * Compiler : RXC
- * OS : Nothing
- * Programmer :
- * Note :
- ************************************************************************
- * Copyright, 2011. Renesas Electronics Corporation
- * and Renesas Solutions Corporation
- ************************************************************************
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FILE COMMENT END""**************************************************/
- #include "r_pdl_iic.h"
- #include "r_pdl_definitions.h"
- #include "r_pdl_user_definitions.h"
- /* For DMAC support */
- #define DMCNT_ADDRESS(a) ((volatile uint8_t *)&DMAC0.DMCNT + ((0x40u * a) / sizeof( uint8_t)) )
- /* External functions */
- extern void Store_detected_address(const uint8_t);
- /*""FUNC COMMENT""***************************************************
- * Module outline: IICn event interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void InterruptIIC_ICEEIn(void)
- *-------------------------------------------------------------------
- * Function :
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Output :
- *-------------------------------------------------------------------
- * Use function :
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_RIIC0_ICEEI0
- __fast_interrupt void Interrupt_IIC_ICEEI0(void)
- #else
- #pragma vector = VECT_RIIC0_ICEEI0
- __interrupt void Interrupt_IIC_ICEEI0(void)
- #endif
- {
- uint8_t valid_flags;
- volatile uint8_t unwanted_byte;
- /* Read the status register */
- valid_flags = RIIC0.ICSR2.BYTE;
- /* Remove any that are not enabled */
- valid_flags &= RIIC0.ICIER.BYTE;
- /* Remove the transmit and receive flags */
- valid_flags &= 0x1Fu;
- /* Start or Repeated Start detected? */
- if ((valid_flags & BIT_2) != 0x0u)
- {
- /* Decide what to send */
- switch(rpdl_IIC_next_state[0])
- {
- case IIC_MASTER_SEND_SLAVE_ADDRESS_7:
- /* Send the slave address */
- RIIC0.ICDRT = rpdl_IIC_slave_address_lower[0];
- /* Transmit mode? */
- if ((rpdl_IIC_slave_address_lower[0] & BIT_0) == 0)
- {
- rpdl_IIC_current_state[0] = IIC_MASTER_SEND_DATA;
- }
- else
- {
- rpdl_IIC_current_state[0] = IIC_MASTER_START_READ;
- }
- break;
- case IIC_MASTER_SEND_SLAVE_ADDRESS_10a:
- rpdl_IIC_current_state[0] = IIC_MASTER_SEND_SLAVE_ADDRESS_10b;
- /* Send the first part of the slave address */
- RIIC0.ICDRT = rpdl_IIC_slave_address_upper[0];
- break;
- default:
- break;
- }
- /* Were we expecting data? */
- if (rpdl_IIC_current_state[0] == IIC_SLAVE_READ_DATA)
- {
- /* Go back to checking for a device address */
- rpdl_IIC_current_state[0] = IIC_SLAVE_MONITOR;
- /* Disable Start detection */
- RIIC0.ICIER.BIT.STIE = 0;
- }
- /* Clear the flag */
- RIIC0.ICSR2.BIT.START = 0;
- }
- /* NACK detected? */
- else if ((valid_flags & BIT_4) != 0x0u)
- {
- /* Disable NACK interrupt request generation */
- RIIC0.ICIER.BIT.NAKIE = 0;
- /* Failed transmission of data? */
- if (rpdl_IIC_current_state[0] == IIC_MASTER_SEND_DATA)
- {
- /* Decrement the counter */
- rpdl_IIC_tx_counter[0]--;
- /* Call the callback function */
- if (rpdl_IIC_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[0]();
- }
- }
- /* NACK received from the master? */
- else
- {
- /* Do a dummy read to release SCL */
- unwanted_byte = RIIC0.ICDRR;
- }
- }
- else
- {
- /* Disable all interrupt request generation */
- RIIC0.ICIER.BYTE = 0x00u;
- /* Call the callback function */
- if (rpdl_IIC_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[0]();
- }
- }
- }
- #if FAST_INTC_VECTOR == VECT_RIIC1_ICEEI1
- __fast_interrupt void Interrupt_IIC_ICEEI1(void)
- #else
- #pragma vector = VECT_RIIC1_ICEEI1
- __interrupt void Interrupt_IIC_ICEEI1(void)
- #endif
- {
- #ifdef DEVICE_PACKAGE_LQFP_100
- /* This channel is not available on the 100-pin package */
- nop();
- #else
- uint8_t valid_flags;
- volatile uint8_t unwanted_byte;
- /* Read the status register */
- valid_flags = RIIC1.ICSR2.BYTE;
- /* Remove any that are not enabled */
- valid_flags &= RIIC1.ICIER.BYTE;
- /* Remove the transmit and receive flags */
- valid_flags &= 0x1Fu;
- /* Start or Repeated Start detected? */
- if ((valid_flags & BIT_2) != 0x0u)
- {
- /* Decide what to send */
- switch(rpdl_IIC_next_state[1])
- {
- case IIC_MASTER_SEND_SLAVE_ADDRESS_7:
- /* Send the slave address */
- RIIC1.ICDRT = rpdl_IIC_slave_address_lower[1];
- /* Transmit mode? */
- if ((rpdl_IIC_slave_address_lower[1] & BIT_0) == 0)
- {
- rpdl_IIC_current_state[1] = IIC_MASTER_SEND_DATA;
- }
- else
- {
- rpdl_IIC_current_state[1] = IIC_MASTER_START_READ;
- }
- break;
- case IIC_MASTER_SEND_SLAVE_ADDRESS_10a:
- rpdl_IIC_current_state[1] = IIC_MASTER_SEND_SLAVE_ADDRESS_10b;
- /* Send the first part of the slave address */
- RIIC1.ICDRT = rpdl_IIC_slave_address_upper[1];
- break;
- default:
- break;
- }
- /* Were we expecting data? */
- if (rpdl_IIC_current_state[1] == IIC_SLAVE_READ_DATA)
- {
- /* Go back to checking for a device address */
- rpdl_IIC_current_state[1] = IIC_SLAVE_MONITOR;
- /* Disable Start detection */
- RIIC1.ICIER.BIT.STIE = 0;
- }
- /* Clear the flag */
- RIIC1.ICSR2.BIT.START = 0;
- }
- /* NACK detected? */
- else if ((valid_flags & BIT_4) != 0x0u)
- {
- /* Disable NACK interrupt request generation */
- RIIC1.ICIER.BIT.NAKIE = 0;
- /* Failed transmission of data? */
- if (rpdl_IIC_current_state[1] == IIC_MASTER_SEND_DATA)
- {
- /* Decrement the counter */
- rpdl_IIC_tx_counter[1]--;
- /* Call the callback function */
- if (rpdl_IIC_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[1]();
- }
- }
- /* NACK received from the master? */
- else
- {
- /* Do a dummy read to release SCL */
- unwanted_byte = RIIC1.ICDRR;
- }
- }
- else
- {
- /* Disable all interrupt request generation */
- RIIC1.ICIER.BYTE = 0x00u;
- /* Call the callback function */
- if (rpdl_IIC_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[1]();
- }
- }
- #endif
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: IICn receive data interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_IIC_ICRXIn(void)
- *-------------------------------------------------------------------
- * Function :
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Output : ICDRR, ICIER
- *-------------------------------------------------------------------
- * Use function :
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_RIIC0_ICRXI0
- __fast_interrupt void Interrupt_IIC_ICRXI0(void)
- #else
- #pragma vector = VECT_RIIC0_ICRXI0
- __interrupt void Interrupt_IIC_ICRXI0(void)
- #endif
- {
- volatile uint8_t unwanted_byte;
- switch (rpdl_IIC_current_state[0])
- {
- case IIC_MASTER_START_READ:
- /* Only one byte to be read? */
- if (rpdl_IIC_rx_threshold[0] == 1)
- {
- /* Prepare to signal a NACK to the slave (ACKBT = 1) */
- RIIC0.ICMR3.BIT.ACKBT = 1;
- }
- rpdl_IIC_current_state[0] = IIC_MASTER_READ_DATA;
- /* Do a dummy read */
- unwanted_byte = RIIC0.ICDRR;
- break;
- case IIC_MASTER_READ_DATA:
- /* Is the last byte about to be read from the slave? */
- if (rpdl_IIC_rx_counter[0] == (rpdl_IIC_rx_threshold[0] - 2))
- {
- /* Prepare to signal a NACK to the slave (ACKBT = 1) */
- RIIC0.ICMR3.BIT.ACKBT = 1;
- }
- /* All data read from the slave? */
- else if (rpdl_IIC_rx_counter[0] == (rpdl_IIC_rx_threshold[0] - 1))
- {
- rpdl_IIC_current_state[0] = IIC_MASTER_WAIT_FOR_STOP;
- /* Enable Stop detection */
- RIIC0.ICIER.BIT.SPIE = 1;
- /* Issue a stop condition */
- RIIC0.ICCR2.BIT.SP = 1;
- }
- /* Store the data byte */
- *rpdl_IIC_rx_data_pointer[0] = RIIC0.ICDRR;
- /* Increment the pointer */
- rpdl_IIC_rx_data_pointer[0]++;
- /* Increment the counter */
- rpdl_IIC_rx_counter[0]++;
- break;
- case IIC_SLAVE_MONITOR:
- /* Note the detected address */
- Store_detected_address(0);
- /* Clear the Start flag */
- RIIC0.ICSR2.BIT.START = 0;
- /* Enable Start detection (in case a Repeated Start arrives) */
- RIIC0.ICIER.BIT.STIE = 1;
- /* Will interrupts be used for the transfers? */
- if (rpdl_IIC_rx_transfer_method[0] == IIC_TRANSFER_CPU)
- {
- rpdl_IIC_current_state[0] = IIC_SLAVE_READ_DATA;
- }
- else
- {
- /* Disable ACK / NACK decisions (RDRFS = 0) */
- RIIC0.ICMR3.BIT.RDRFS = 0;
- /* Select DMAC or DTC transfers */
- if (rpdl_IIC_rx_transfer_method[0] == IIC_TRANSFER_DTC)
- {
- ICU.DTCER[DTCE_RIIC0_ICRXI0].BIT.DTCE = 1;
- }
- else /* DMAC */
- {
- /* Set DTE = 1 */
- *DMCNT_ADDRESS(rpdl_IIC_rx_dmac_channel[0]) = 0x01u;
- }
- /* Prevent further RX-based interrupts */
- ICU.IPR[IPR_RIIC0_ICRXI0].BIT.IPR = 0;
- rpdl_IIC_current_state[0] = IIC_EXIT_LOOP;
- }
- /* Do a dummy read */
- unwanted_byte = RIIC0.ICDRR;
- break;
- case IIC_SLAVE_READ_DATA:
- /* All data received? */
- if (rpdl_IIC_rx_counter[0] == rpdl_IIC_rx_threshold[0])
- {
- /* Do a dummy read */
- unwanted_byte = RIIC0.ICDRR;
- /* Signal a NACK to the master */
- RIIC0.ICMR3.BIT.ACKBT = 1;
- }
- else
- {
- /* Store the data byte */
- *rpdl_IIC_rx_data_pointer[0] = RIIC0.ICDRR;
- /* Increment the pointer */
- rpdl_IIC_rx_data_pointer[0]++;
- /* Increment the counter */
- rpdl_IIC_rx_counter[0]++;
- /* Signal an ACK to the master */
- RIIC0.ICMR3.BIT.ACKBT = 0;
- }
- break;
- case IIC_SLAVE_SEND_DATA:
- /* Call the callback function */
- if (rpdl_IIC_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[0]();
- }
- break;
- case IIC_EXIT_LOOP:
- /* This will occur if the DMAC/DTC is being used with a callback */
- /* Call the callback function */
- if (rpdl_IIC_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[0]();
- }
- break;
- default:
- /* Call the callback function */
- if (rpdl_IIC_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[0]();
- }
- break;
- }
- }
- #if FAST_INTC_VECTOR == VECT_RIIC1_ICRXI1
- __fast_interrupt void Interrupt_IIC_ICRXI1(void)
- #else
- #pragma vector = VECT_RIIC1_ICRXI1
- __interrupt void Interrupt_IIC_ICRXI1(void)
- #endif
- {
- #ifdef DEVICE_PACKAGE_LQFP_100
- /* This channel is not available on the 100-pin package */
- nop();
- #else
- volatile uint8_t unwanted_byte;
- switch (rpdl_IIC_current_state[1])
- {
- case IIC_MASTER_START_READ:
- /* Only one byte to be read? */
- if (rpdl_IIC_rx_threshold[1] == 1)
- {
- /* Prepare to signal a NACK to the slave (ACKBT = 1) */
- RIIC1.ICMR3.BIT.ACKBT = 1;
- }
- rpdl_IIC_current_state[1] = IIC_MASTER_READ_DATA;
- /* Do a dummy read */
- unwanted_byte = RIIC1.ICDRR;
- break;
- case IIC_MASTER_READ_DATA:
- /* Is the last byte about to be read from the slave? */
- if (rpdl_IIC_rx_counter[1] == (rpdl_IIC_rx_threshold[1] - 2))
- {
- /* Prepare to signal a NACK to the slave (ACKBT = 1) */
- RIIC1.ICMR3.BIT.ACKBT = 1;
- }
- /* All data read from the slave? */
- else if (rpdl_IIC_rx_counter[1] == (rpdl_IIC_rx_threshold[1] - 1))
- {
- rpdl_IIC_current_state[1] = IIC_MASTER_WAIT_FOR_STOP;
- /* Enable Stop detection */
- RIIC1.ICIER.BIT.SPIE = 1;
- /* Issue a stop condition */
- RIIC1.ICCR2.BIT.SP = 1;
- }
- /* Store the data byte */
- *rpdl_IIC_rx_data_pointer[1] = RIIC1.ICDRR;
- /* Increment the pointer */
- rpdl_IIC_rx_data_pointer[1]++;
- /* Increment the counter */
- rpdl_IIC_rx_counter[1]++;
- break;
- case IIC_SLAVE_MONITOR:
- /* Note the detected address */
- Store_detected_address(1);
- /* Clear the Start flag */
- RIIC1.ICSR2.BIT.START = 0;
- /* Enable Start detection (in case a Repeated Start arrives) */
- RIIC1.ICIER.BIT.STIE = 1;
- /* Will interrupts be used for the transfers? */
- if (rpdl_IIC_rx_transfer_method[1] == IIC_TRANSFER_CPU)
- {
- rpdl_IIC_current_state[1] = IIC_SLAVE_READ_DATA;
- }
- else
- {
- /* Disable ACK / NACK decisions (RDRFS = 0) */
- RIIC1.ICMR3.BIT.RDRFS = 0;
- /* Select DMAC or DTC transfers */
- if (rpdl_IIC_rx_transfer_method[1] == IIC_TRANSFER_DTC)
- {
- ICU.DTCER[DTCE_RIIC1_ICRXI1].BIT.DTCE = 1;
- }
- else /* DMAC */
- {
- /* Set DTE = 1 */
- *DMCNT_ADDRESS(rpdl_IIC_rx_dmac_channel[1]) = 0x01u;
- }
- /* Prevent further RX-based interrupts */
- ICU.IPR[IPR_RIIC1_ICRXI1].BIT.IPR = 0;
- rpdl_IIC_current_state[1] = IIC_EXIT_LOOP;
- }
- /* Do a dummy read */
- unwanted_byte = RIIC1.ICDRR;
- break;
- case IIC_SLAVE_READ_DATA:
- /* All data received? */
- if (rpdl_IIC_rx_counter[1] == rpdl_IIC_rx_threshold[1])
- {
- /* Do a dummy read */
- unwanted_byte = RIIC1.ICDRR;
- /* Signal a NACK to the master */
- RIIC1.ICMR3.BIT.ACKBT = 1;
- }
- else
- {
- /* Store the data byte */
- *rpdl_IIC_rx_data_pointer[1] = RIIC1.ICDRR;
- /* Increment the pointer */
- rpdl_IIC_rx_data_pointer[1]++;
- /* Increment the counter */
- rpdl_IIC_rx_counter[1]++;
- /* Signal an ACK to the master */
- RIIC1.ICMR3.BIT.ACKBT = 0;
- }
- break;
- case IIC_SLAVE_SEND_DATA:
- /* Call the callback function */
- if (rpdl_IIC_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[1]();
- }
- break;
- case IIC_EXIT_LOOP:
- /* This will occur if the DMAC/DTC is being used with a callback */
- /* Call the callback function */
- if (rpdl_IIC_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[1]();
- }
- break;
- default:
- /* Call the callback function */
- if (rpdl_IIC_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[1]();
- }
- break;
- }
- #endif
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: IICn transmit data interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_IIC_ICTXIn(void)
- *-------------------------------------------------------------------
- * Function :
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Output : ICDRT, ICIER
- *-------------------------------------------------------------------
- * Use function :
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_RIIC0_ICTXI0
- __fast_interrupt void Interrupt_IIC_ICTXI0(void)
- #else
- #pragma vector = VECT_RIIC0_ICTXI0
- __interrupt void Interrupt_IIC_ICTXI0(void)
- #endif
- {
- switch (rpdl_IIC_current_state[0])
- {
- case IIC_MASTER_SEND_SLAVE_ADDRESS_10b:
- /* Send the second part of the slave address */
- RIIC0.ICDRT = rpdl_IIC_slave_address_lower[0];
- /* Transmit mode? */
- if ((rpdl_IIC_slave_address_upper[0] & BIT_0) == 0)
- {
- rpdl_IIC_current_state[0] = IIC_MASTER_SEND_DATA;
- }
- else
- {
- rpdl_IIC_current_state[0] = IIC_MASTER_START_READ;
- /* Enable receive interrupt request generation */
- RIIC0.ICIER.BIT.RIE = 1;
- }
- break;
- case IIC_MASTER_SEND_DATA:
- /* All data sent? */
- if (rpdl_IIC_tx_counter[0] == rpdl_IIC_tx_threshold[0])
- {
- rpdl_IIC_current_state[0] = IIC_MASTER_WAIT_FOR_TX_COMPLETE;
- /* Disable ICTXI interrupt request generation */
- RIIC0.ICIER.BIT.TIE = 0;
- /* Ensure the ICTEI IR flag is clear */
- ICU.IR[IR_RIIC0_ICTEI0].BIT.IR = 0;
- /* Enable Transmit End interrupt generation */
- RIIC0.ICIER.BIT.TEIE = 1;
- }
- else
- {
- /* Load the data to be sent */
- RIIC0.ICDRT = *rpdl_IIC_tx_data_pointer[0];
- /* Increment the pointer */
- rpdl_IIC_tx_data_pointer[0]++;
- /* Increment the counter */
- rpdl_IIC_tx_counter[0]++;
- }
- break;
- case IIC_SLAVE_MONITOR:
- /* Note the detected address */
- Store_detected_address(0);
- /* Call the callback function */
- if (rpdl_IIC_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[0]();
- }
- break;
- case IIC_SLAVE_SEND_DATA:
- /* All data sent? */
- if (rpdl_IIC_tx_counter[0] == rpdl_IIC_tx_threshold[0])
- {
- /* Clear the counter */
- rpdl_IIC_tx_counter[0] = 0;
- /* Loop back to the start */
- rpdl_IIC_tx_data_pointer[0] = rpdl_IIC_tx_data_start[0];
- }
- /* Load the data to be sent */
- RIIC0.ICDRT = *rpdl_IIC_tx_data_pointer[0];
- /* Increment the pointer */
- rpdl_IIC_tx_data_pointer[0]++;
- /* Increment the counter */
- rpdl_IIC_tx_counter[0]++;
- break;
- case IIC_SLAVE_READ_DATA:
- /* Call the callback function */
- if (rpdl_IIC_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[0]();
- }
- break;
- case IIC_EXIT_LOOP:
- /* This will occur if the DMAC/DTC is being used with a callback */
- /* Call the callback function */
- if (rpdl_IIC_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[0]();
- }
- break;
- default:
- /* Call the callback function */
- if (rpdl_IIC_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[0]();
- }
- break;
- }
- }
- #if FAST_INTC_VECTOR == VECT_RIIC1_ICTXI1
- __fast_interrupt void Interrupt_IIC_ICTXI1(void)
- #else
- #pragma vector = VECT_RIIC1_ICTXI1
- __interrupt void Interrupt_IIC_ICTXI1(void)
- #endif
- {
- #ifdef DEVICE_PACKAGE_LQFP_100
- /* This channel is not available on the 100-pin package */
- nop();
- #else
- switch (rpdl_IIC_current_state[1])
- {
- case IIC_MASTER_SEND_SLAVE_ADDRESS_10b:
- /* Send the second part of the slave address */
- RIIC1.ICDRT = rpdl_IIC_slave_address_lower[1];
- /* Transmit mode? */
- if ((rpdl_IIC_slave_address_upper[1] & BIT_0) == 0)
- {
- rpdl_IIC_current_state[1] = IIC_MASTER_SEND_DATA;
- }
- else
- {
- rpdl_IIC_current_state[1] = IIC_MASTER_START_READ;
- /* Enable receive interrupt request generation */
- RIIC1.ICIER.BIT.RIE = 1;
- }
- break;
- case IIC_MASTER_SEND_DATA:
- /* All data sent? */
- if (rpdl_IIC_tx_counter[1] == rpdl_IIC_tx_threshold[1])
- {
- rpdl_IIC_current_state[1] = IIC_MASTER_WAIT_FOR_TX_COMPLETE;
- /* Disable ICTXI interrupt request generation */
- RIIC1.ICIER.BIT.TIE = 0;
- /* Ensure the ICTEI IR flag is clear */
- ICU.IR[IR_RIIC1_ICTEI1].BIT.IR = 0;
- /* Enable Transmit End interrupt generation */
- RIIC1.ICIER.BIT.TEIE = 1;
- }
- else
- {
- /* Load the data to be sent */
- RIIC1.ICDRT = *rpdl_IIC_tx_data_pointer[1];
- /* Increment the pointer */
- rpdl_IIC_tx_data_pointer[1]++;
- /* Increment the counter */
- rpdl_IIC_tx_counter[1]++;
- }
- break;
- case IIC_SLAVE_MONITOR:
- /* Note the detected address */
- Store_detected_address(1);
- /* Call the callback function */
- if (rpdl_IIC_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[1]();
- }
- break;
- case IIC_SLAVE_SEND_DATA:
- /* All data sent? */
- if (rpdl_IIC_tx_counter[1] == rpdl_IIC_tx_threshold[1])
- {
- /* Clear the counter */
- rpdl_IIC_tx_counter[1] = 0;
- /* Loop back to the start */
- rpdl_IIC_tx_data_pointer[1] = rpdl_IIC_tx_data_start[1];
- }
- /* Load the data to be sent */
- RIIC1.ICDRT = *rpdl_IIC_tx_data_pointer[1];
- /* Increment the pointer */
- rpdl_IIC_tx_data_pointer[1]++;
- /* Increment the counter */
- rpdl_IIC_tx_counter[1]++;
- break;
- case IIC_SLAVE_READ_DATA:
- /* Call the callback function */
- if (rpdl_IIC_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[1]();
- }
- break;
- case IIC_EXIT_LOOP:
- /* This will occur if the DMAC/DTC is being used with a callback */
- /* Call the callback function */
- if (rpdl_IIC_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[1]();
- }
- break;
- default:
- /* Call the callback function */
- if (rpdl_IIC_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[1]();
- }
- break;
- }
- #endif
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: IICn transmit end interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void InterruptIIC_ICTEIn(void)
- *-------------------------------------------------------------------
- * Function :
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Output : ICIER, ICSR2
- *-------------------------------------------------------------------
- * Use function :
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_RIIC0_ICTEI0
- __fast_interrupt void Interrupt_IIC_ICTEI0(void)
- #else
- #pragma vector = VECT_RIIC0_ICTEI0
- __interrupt void Interrupt_IIC_ICTEI0(void)
- #endif
- {
- /* Disable Transmit End interrupt request generation */
- RIIC0.ICIER.BIT.TEIE = 0;
- /* Clear the flag */
- RIIC0.ICSR2.BIT.TEND = 0;
- /* Stop condition required? */
- if (rpdl_IIC_stop[0] == true)
- {
- rpdl_IIC_current_state[0] = IIC_MASTER_WAIT_FOR_STOP;
- /* Enable Stop detection */
- RIIC0.ICIER.BIT.SPIE = 1;
- /* Issue a stop condition */
- RIIC0.ICCR2.BIT.SP = 1;
- }
- else
- {
- /* Disable all interrupt request generation */
- RIIC0.ICIER.BYTE = 0x00u;
- /* Call the callback function */
- if (rpdl_IIC_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[0]();
- }
- }
- }
- #if FAST_INTC_VECTOR == VECT_RIIC1_ICTEI1
- __fast_interrupt void Interrupt_IIC_ICTEI1(void)
- #else
- #pragma vector = VECT_RIIC1_ICTEI1
- __interrupt void Interrupt_IIC_ICTEI1(void)
- #endif
- {
- #ifdef DEVICE_PACKAGE_LQFP_100
- /* This channel is not available on the 100-pin package */
- nop();
- #else
- /* Disable Transmit End interrupt request generation */
- RIIC1.ICIER.BIT.TEIE = 0;
- /* Clear the flag */
- RIIC1.ICSR2.BIT.TEND = 0;
- /* Stop condition required? */
- if (rpdl_IIC_stop[1] == true)
- {
- rpdl_IIC_current_state[1] = IIC_MASTER_WAIT_FOR_STOP;
- /* Enable Stop detection */
- RIIC1.ICIER.BIT.SPIE = 1;
- /* Issue a stop condition */
- RIIC1.ICCR2.BIT.SP = 1;
- }
- else
- {
- /* Disable all interrupt request generation */
- RIIC1.ICIER.BYTE = 0x00u;
- /* Call the callback function */
- if (rpdl_IIC_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_IIC_callback_func[1]();
- }
- }
- #endif
- }
- /* End of file */
|