Posts

Post not yet marked as solved
10 Replies
2.2k Views
This c struct with fixed array size of 8096 imported ok using Swift with Xcode 10:typedef struct{ uint8_t data[8192];}TEST_FIXED_ARRAY;The same code failed to import using Swift with Xcode 11.2Changing to data[4096]; is working ok however.This break a lot of my C libraries that implement C fixed-array larger than 4096 elements 😟
Posted
by Datagram.
Last updated
.