X-Git-Url: https://rtime.felk.cvut.cz/gitweb/fpga/rpi-motor-control.git/blobdiff_plain/06b1a193c87d7055643e48b1bd56f59c8e7fa519..c4cdcbe5bfaecb9024e4fe41be29a4541653b8ef:/pmsm-control/test_sw/rp_spi.c diff --git a/pmsm-control/test_sw/rp_spi.c b/pmsm-control/test_sw/rp_spi.c index 57a2122..bbe8225 100644 --- a/pmsm-control/test_sw/rp_spi.c +++ b/pmsm-control/test_sw/rp_spi.c @@ -84,20 +84,18 @@ struct rpi_in spi_read(uint8_t * tx) ret = ioctl(fd, SPI_IOC_MESSAGE(1), &tr); /*vypisovani prichozich dat */ - /*/ + if (ret < 1) pabort("can't send spi message"); for (ret = 0; ret < ARRAY_SIZE; ret++) { - if (!(ret % 6)) - puts(""); - printf("%.2X ", rx[ret]); + in.debug_rx[ret]=rx[ret]; } - puts(""); + /*/ /*prichozi data: - * rx[0] - bity 127 downto 120 + * rx[0] - bity 127 downto 120 the first income bit..127 * rx[1] - bity 119 downto 112 * rx[2] - bity 111 downto 104 * rx[3] - bity 103 downto 96 @@ -112,7 +110,7 @@ struct rpi_in spi_read(uint8_t * tx) * rx[12] - bity 31 downto 24 * rx[13] - bity 23 downto 16 * rx[14] - bity 15 downto 8 - * rx[15] - bity 7 downto 0 + * rx[15] - bity 7 downto 0 the last income bit..0 */ /*uprava endianity pozice*/ @@ -122,7 +120,6 @@ struct rpi_in spi_read(uint8_t * tx) uint8_p[1]=rx[2]; uint8_p[2]=rx[1]; uint8_p[3]=rx[0]; /*MSB*/ /*with sign bit*/ - uint8_p[4]=uint8_p[5]=uint8_p[6]=uint8_p[7]=0; /*halove sondy * hal1 - bit95 @@ -133,60 +130,59 @@ struct rpi_in spi_read(uint8_t * tx) in.hal2=!!(0x40 & rx[4]); in.hal3=!!(0x20 & rx[4]); - /*pwm enable - * en1 - bit92 - * en2 - bit91 - * en2 - bit90 + /* index position + * bits 92 downto 81 + * 92..88 in rx[4] last 5 bits (from left) + * 87..81 in rx[5] first 7 bits (from left) */ - in.en1=!!(0x10 & rx[4]); - in.en2=!!(0x08 & rx[4]); - in.en3=!!(0x04 & rx[4]); - - /*shutdown - * shdn1 - bit89 - * shdn2 - bit88 - * shdn3 - bit87 + in.index_position=0x1F & rx[4]; + in.index_position<<=8; + in.index_position|=0xFE & rx[5]; + in.index_position>>=1; + + /* current measurments count + * bits 80 downto 72 + * bit 80 in rx[5] + * bits 79..72 in rx[6] */ - in.shdn1=!!(0x02 & rx[4]); - in.shdn2=!!(0x01 & rx[4]); - in.shdn3=!!(0x80 & rx[5]); - /*debug bits - * + in.adc_m_count=0x01 & rx[5]; + in.adc_m_count<<=8; + in.adc_m_count|=rx[6]; + + + /** currents + * ch2 - bits 71 downto 48 + * 71..64 in rx[7] - all byte + * 63..56 in rx[8] - all byte + * 55..48 in rx[9] - all byte + * ch0 - bits 47 downto 24 + * 47..40 in rx[10] - all byte + * 39..32 in rx[11] - all byte + * 31..24 in rx[12] - all byte + * ch1 - bits 23 downto 0 + * 23..16 in rx[13] - all byte + * 15..8 in rx[14] - all byte + * 7..0 in rx[15] - all byte */ - in.b54=!!(0x40 & rx[5]); - in.b53=!!(0x20 & rx[5]); - in.b52=!!(0x10 & rx[5]); - in.b51=!!(0x08 & rx[5]); - in.b50=!!(0x04 & rx[5]); - in.b49=!!(0x02 & rx[5]); - in.b48=!!(0x01 & rx[5]); - in.b47=!!(0x80 & rx[6]); - in.b46=!!(0x40 & rx[6]); - in.b45=!!(0x20 & rx[6]); - in.b44=!!(0x10 & rx[6]); - in.b43=!!(0x08 & rx[6]); - in.b42=!!(0x04 & rx[6]); - in.b41=!!(0x02 & rx[6]); - in.b40=!!(0x01 & rx[6]); - in.b39=!!(0x80 & rx[7]); - in.b38=!!(0x40 & rx[7]); - in.b37=!!(0x20 & rx[7]); - in.b36=!!(0x10 & rx[7]); - - - in.ch0=0x0F & rx[7]; + + in.ch2=rx[7]; + in.ch2<<=8; + in.ch2|=rx[8]; + in.ch2<<=8; + in.ch2|=rx[9]; + + in.ch0=rx[10]; + in.ch0<<=8; + in.ch0|=rx[11]; in.ch0<<=8; - in.ch0|=rx[8]; + in.ch0|=rx[12]; - in.ch1= rx[9]; + in.ch1=rx[13]; in.ch1<<=8; - in.ch1|=(rx[10] & 0xF0); - in.ch1>>=4; - - in.ch2=(0xF & rx[10]); - in.ch2<<=8; - in.ch2|=rx[11]; + in.ch1|=rx[14]; + in.ch1<<=8; + in.ch1|=rx[15]; return in;