Commit Graph
18 Commits
Author SHA1 Message Date
joeyahines 70a3c260e6 Improved docs + a bunch of fixes
+ Better error handling
  + Line numbers in toml errors should now match the file
  + Errors during parsing show where in the bit stream they failed
+ Fixed some issues with string, float, and double parsing reporting the wrong bit width
+ Updated docs and added the example.toml config
+ clipppy + fmt
2022-04-10 10:42:05 -06:00
joeyahines f4e75fedd5 Fix .woodpecker.yml 2022-04-09 13:55:51 -06:00
joeyahines 79f8ae641d Updated README.md [CI SKIP] 2022-04-09 13:53:14 -06:00
joeyahines 492e4dfc52 Merge pull request 'Added Woodpecker CI support' (#1) from ci into main
Reviewed-on: https://git.jojodev.com/joeyahines/formaty/pulls/1
2022-04-09 19:47:17 +00:00
joeyahines a1d51d08ef Added Woodpecker CI support 2022-04-09 13:44:24 -06:00
joeyahines 1cf7f06230 Added additional printers
+ Data types can be printed in different formats
+ The formats respect endianness
+ Fixed tests
+ clippy+fmt
2022-04-09 13:33:55 -06:00
joeyahines 6407335362 Fmt + Clippy 2022-04-09 12:40:37 -06:00
joeyahines 59351fb699 Added default formatters + error handling 2022-04-09 12:34:15 -06:00
joeyahines f8ba81e2ca Fully Working CCSDS parsing
+ updated ccsds config to make it work, as I expect it to at least
2022-04-09 11:25:09 -06:00
joeyahines e822d9ff13 Added endianness support 2022-04-05 20:45:58 -06:00
joeyahines 2697b4b848 Added README.md LICENSE.md
+ Also made --help more useful
2021-10-09 14:09:21 -06:00
joeyahines ef8918d517 fmt + clippy 2021-10-09 14:00:49 -06:00
joeyahines bb6f331c75 Cleared up issue with parsing ints
+ Endianness was all out of whack
+ Everything is currently handled as little endian, easy to add a config for endianness later
+ num-bigint comes in clutch, it now handles the shifting of bits
2021-10-09 13:58:41 -06:00
joeyahines 6daf3a55f2 Added examples and better error reporting
+ The field that errors is now reported
+ The formats/ dir contains all predefined formats
  + Includes CCSDS packet for now
+ There appears to be an issue with bit formatting, the APID field is not being parsed correctly (upper 8 bits is not being factored in
2021-10-09 10:57:34 -06:00
joeyahines 4e9f4bff1d Added string and bytes formatting
+ String fields are always null terminated and have a max length
+ Byte fields are made of raw bytes, and read data until they hit a max length or the end of data is reached
2021-10-09 10:05:32 -06:00
joeyahines 652682cb19 Added floating point formatting
+ Supports single and double precession formatting
+ Added Error handling from the formatting functions
2021-10-09 09:30:02 -06:00
joeyahines 9e5b0aafbd Int formatting working
+ Using num-bigint to support arbitrarily sized ints
+ Added formatting tests
2021-10-09 08:42:17 -06:00
joeyahines b85ba31f91 Initial Commit
+ Basic implementation working with just unsigned ints
+ Can fetch data from arbitrary bit positions in a byte string
+ TOML config implementation for describing data
+ Simple CLI
2021-09-11 12:21:34 -06:00