M3 deserialize (#618)

* m3: updated serializing loop in trimming

* fixed the deserializing loop again
This commit is contained in:
Dhanya Thattil 2023-01-17 09:39:58 +01:00 committed by GitHub
parent 713639d001
commit 7466c0bc8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View File

@ -313,7 +313,7 @@ patternParameters *setChannelRegisterChip(int ichip, char *mask,
chanReg, ichip * NCHAN + ich * NCOUNTERS, chanReg, ichip * NCHAN + ich * NCOUNTERS,
ichip * NCHAN_1_COUNTER + ich, ichip, ich)); ichip * NCHAN_1_COUNTER + ich, ichip, ich));
} }
for (int i = 1; i < 24; i++) { for (int i = 0; i < 23; i++) {
patword = clearBit(SIGNAL_clk, patword); patword = clearBit(SIGNAL_clk, patword);
pat->word[iaddr++] = patword; pat->word[iaddr++] = patword;

View File

@ -10,5 +10,5 @@
#define APIMOENCH "7.0.0.rc1 0x221212" #define APIMOENCH "7.0.0.rc1 0x221212"
#define APIEIGER "7.0.0.rc1 0x221212" #define APIEIGER "7.0.0.rc1 0x221212"
#define APIGOTTHARD "7.0.0.rc2 0x221220" #define APIGOTTHARD "7.0.0.rc2 0x221220"
#define APIMYTHEN3 "7.0.0.rc2 0x230116"
#define APIMYTHEN3 "7.0.0.rc2 0x230117"