Dusan Cervenka
Dusan Cervenka
Would be nice to have chance to get output in json type. result.toJSON() => {'type':'struct', 'name':'structName','members':[{...},{...}]} or {'type':'struct', 'name':'structName','members':{'paam1':{...},'paam2':{...},...}}
Demo: ``` struct A { uint8 a; uint8 b[]; }; ``` The expected behavior of: cparser.A(b'\x01\x02\x03\x04\x00\x00') **should be** ``` struct A: - a: 0x1 - b: [2, 3, 4, 0,...
e.g.: ``` struct __attribute__((packed)) acMsgHeader { uint32_t messageUID; }; ```
Hi, this structure isn't parsed and it is skipped (when most of comments are removed, structure is parsed properly): ``` struct acSensorArrayData { //Accelerometer //{ uint16_t accelerationX; uint16_t accelerationY; uint16_t...
Ignoring __attribute__ Related to #6
comments like // } or /*}*/ didn't work Should be fixed more of the cases
# Pull request **Choose Correct** - [ ] bug - [X] feature **Describe the pull request** Better support of C++ usecases -> mainly multiple clients usage. **To Reproduce** **Expected behavior**...
# Pull request **Choose Correct** - [ ] bug - [X] feature **Describe the pull request** Ability to run python execution tests and also test communication of client/server applications using...
**Is your feature request related to a problem? Please describe.** Enable in pytest negative tests. Match against erpcgen stdout **Describe the solution you'd like** **Describe alternatives you've considered** **Steps you...