2015-01-23 14 views
0

uint8_t를 배열로 사용하여 이런 전송 문제를 해결할 수 있습니다. 주 기능에서 전송으로 넘어갈 때 크기가 4 요소로 변경됩니다. 주 함수에서 전달 된 길이로 값을 보내기 위해 다른 배열을 수동으로 만들지 만, 전달 함수 내에서 배열과 동일한 작업을합니다. 내 프로세서에서의 데이터 정렬 및 패딩 때문인 것으로 알고 있습니다. 그것을 해결할 방법이 있습니까? 아니면 내가 잘못 인쇄하고있다. sizeof 운영자가 배열의 실제 크기를 제공하기 위해Raspberry PI uint8_t alignment

#include <stdint.h> 
#include <unistd.h> 
#include <stdio.h> 
#include <stdlib.h> 
#include <getopt.h> 
#include <fcntl.h> 
#include <sys/ioctl.h> 
#include <linux/types.h> 
#include <linux/spi/spidev.h> 

#define ARRAY_SIZE(a) (sizeof(a)/sizeof(uint8_t)) 

static const char *device = "/dev/spidev0.0"; 
static uint8_t mode; 
static uint8_t bits = 8; 
static uint32_t speed = 1000000; 
static uint16_t delay; 


static void transfer(int fd, const uint8_t *pass, size_t arsize) 
{ 
int ret,i,k; 
printf(" rozmiar tabpass=%d ", arsize); 
uint8_t *rx = (uint8_t*) malloc(arsize * sizeof(uint8_t)); 
//this is where I create rx with arsize lenght 
uint8_t *tx = (uint8_t*) malloc(arsize * sizeof(uint8_t)); 
for (i = 0; i < arsize; i++){ 
    *(rx + i) = 0; 
    *(tx + i) = *(pass + i); 
} 
for (k = 0; k < (sizeof (pass)/sizeof (pass[0])); k++) { 
    printf(" a%X\n ", pass[k]); 
//here I check length of passed array 
} 
for (k = 0; k < (sizeof (tx)/sizeof (tx[0])); k++) { 
    printf(" b%X\n ", tx[k]); 
// I check length of newly created array, should be equal to array size 
} 
printf(" rozmiar tabtx=%d ", ARRAY_SIZE(tx)); 
struct spi_ioc_transfer tr = { 
    .tx_buf = (unsigned long)tx, 
    .rx_buf = (unsigned long)rx, 
    .len = arsize, 
    .delay_usecs = delay, 
    .speed_hz = speed, 
    .bits_per_word = bits, 
    .cs_change = 0, 
}; 

ret = ioctl(fd, SPI_IOC_MESSAGE(1), &tr); 
printf(" rozmiar tabrx=%d ", ARRAY_SIZE(rx)); 
//here it prints size of array equals 4 
for (ret = 0; ret < arsize; ret++) { 
    if (!(ret % 6)) 
     puts(""); 

    printf("%d. %.2X ", ret, rx[ret]); 

} 
puts(""); 
tr.cs_change = 1; 
} 

int main(int argc, char *argv[]) 
{ 
int ret = 0; 
int fd; 

fd = open(device, O_RDWR); 

/* 
* spi mode 
*/ 
ret = ioctl(fd, SPI_IOC_WR_MODE, &mode); 

ret = ioctl(fd, SPI_IOC_RD_MODE, &mode); 

/* 
* bits per word 
*/ 
ret = ioctl(fd, SPI_IOC_WR_BITS_PER_WORD, &bits); 

ret = ioctl(fd, SPI_IOC_RD_BITS_PER_WORD, &bits); 

/* 
* max speed hz 
*/ 
ret = ioctl(fd, SPI_IOC_WR_MAX_SPEED_HZ, &speed); 

ret = ioctl(fd, SPI_IOC_RD_MAX_SPEED_HZ, &speed); 

printf("spi mode: %d\n", mode); 
printf("bits per word: %d\n", bits); 
printf("max speed: %d Hz (%d KHz)\n", speed, speed/1000); 

uint8_t tx1[] = { 
    0x0, 0x1b, 0xa5 
}; 
transfer(fd, tx1, ARRAY_SIZE(tx1)); 

uint8_t tx2[] = { 
    0x0, 0x33, 0x30 
}; 
printf(" %d. ", ARRAY_SIZE(tx2)); 
transfer(fd, tx2, ARRAY_SIZE(tx2)); 

uint8_t tx3[] = { 
    0x0, 0x52, 0x90 
}; 
transfer(fd, tx3, ARRAY_SIZE(tx3)); 

uint8_t tx4[] = { 
    0x80, 0x60 
}; 
printf(" %d. ", ARRAY_SIZE(tx4)); 
transfer(fd, tx4, ARRAY_SIZE(tx4)); 

close(fd); 

return ret; 
} 

답변

1

을 수행해야합니다

  1. 정적
  2. 이 선언의 범위 내에서 배열을 참조 배열을 할당

예 :

void func() 
{ 
    int arr[10]; 
    int total_size = sizeof(arr); 
    int num_of_elements = sizeof(arr)/sizeof(*arr); 
    ... 
} 

배열이 정적으로 할당되지 않은 경우의 예 :

void func() 
{ 
    int* arr = malloc(sizeof(int)*10); 
    int total_size = sizeof(arr); // will give you the size of 'int*' 
    ... 
} 

배열이 선언의 범위 내에없는 경우의 예 :

void func(int arr[]) // same as 'int* arr' 
{ 
    int total_size = sizeof(arr); // will give you the size of 'int*' 
    ... 
} 
+1

내가 거의 모든 실제적인 목적을 위해 그를 추가, 함수 매개 변수로서의 배열은 포인터를 호출하는 대체 구문입니다. 이 게시물은 한 가지 차이점을 설명합니다. http://stackoverflow.com/questions/5573310/difference-between-passing-array-and-array-pointer-into-function-in-c –

+0

@BrianMcFarland : 네, 아마도 추가해야합니다. 배열이 함수에 전달 될 때 포인터로 쇠퇴한다는 것. –

+0

@mafso : 네, 고마워요! –