Browse Source

Versuch 3 Software so halb

master
brandlfl78731 3 weeks ago
parent
commit
45db9f89e2

+ 59
- 0
software/signal_processing/crc.c View File

int task_crc_run( void * task ) { int task_crc_run( void * task ) {


// TODO // TODO
crc_config * config = ( crc_config *) task;

uint32_t value = config->start; // Startwert CRC vom gewaehlten Algorithmus (wird erst in der Funktion invertiert)

// Nachfolgende Antworten Lesen den FIFO der ersten Datenquelle aus und multiplizieren
// den jeweils gelesenen Wert mit 4 und speichern das Ergebnis in der Datensenke
for (uint32_t i = 0; i < DATA_CHANNEL_DEPTH; ++i) {
float_word a;
data_channel_read(config->base.sources[0], (uint32_t * ) & a.word );
float_word c;
//c.value = 4*a; //Hier mit Werten aus CRC FIFO multiplizieren
c.value = 0;

for (uint32_t j = 0; j < 32; j++) {
if (a.word & (1<<31)) {
c.word = (c.word * 2 + ((a.word & (1<<j))>>j)) ^ CRC32POLY;
} else {
c.word = (c.word * 2 + ((a.word & (1<<j))>>j));
}
}

/*
for (uint32_t j = 0; j < 4; j++) {
if (a.word & (1<<31)) {
c.word = (c.word * 2 + ((a.word & (0xff<<j*8))>>j*8)) ^ CRC32POLY;
} else {
c.word = (c.word * 2 + ((a.word & (0xff<<j*8))>>j*8));
}
}
*/
data_channel_write( config->base.sink, c.word );
printf("a= %08x c= %08x\n", a.word, c.word);
}


return 0; return 0;
} }


/*
crc := 0000… (Startwert)
für alle Bits b im Datenstrom:
wenn das am weitesten links stehende Bit von crc 1 ist:
crc := (crc * 2 + b) xor CRC-Polynom
sonst:
crc := crc * 2 + b
crc enthält das Ergebnis.
*/
/*
const uint8_t bitstream[] = { 1,0,0,0,1,1,0,0 };
const int bitcount = 8;
uint32_t crc32 = 0; // Schieberegister

int main ()
{
for (int i = 0; i < bitcount; i++)
{
if ( ((crc32 >> 31) & 1) != bitstream[i])
crc32 = (crc32 << 1) ^ CRC32POLY;
else
crc32 = (crc32 << 1);
}
printf ("0x%08X\n", crc32);
}
*/

+ 2
- 1
software/signal_processing/system/task_crc.h View File



extern crc_config CRC_CONFIG; extern crc_config CRC_CONFIG;


#define CRC32POLY 0xEDB88320 /* CRC-32 Polynom (Invers)*/
//#define CRC32POLY 0xEDB88320 /* CRC-32 Polynom (Invers)*/
#define CRC32POLY 0x04C11DB7


int task_crc_run( void * task ); int task_crc_run( void * task );



BIN
tests/software/task_crc/test_task_crc View File


Loading…
Cancel
Save