AIT-Core icon indicating copy to clipboard operation
AIT-Core copied to clipboard

Results 111 AIT-Core issues
Sort by recently updated
recently updated
newest added

While developing SunRise adaptations, we learned that while AIT allows for sequences to be extended, the documentation is not clear on this. Reference: https://ait-core.readthedocs.io/en/latest/extensions.html So please add sequences as another...

Different instruments have different time systems on satellites. Commonly: GPS (1980 epoch) - happens on a lot of NAV systems that use GPS. UTC (1970 epoch) - default unix timestamp;...

Currently, plugins that use the database declare the database impl (currently between Influx and MySql) as part of their plugin section in the AIT config. E.g. ``` plugins: - plugin:...

The confirm prompt functionality in the script API is largely undocumented. We should add a section to the relevant page(s) covering this. Something like the following demonstrates this reasonably well....

A user ran into an issue with a chunk of the CmdAPI exception handling code. https://github.com/NASA-AMMOS/AIT-Core/blob/67e2682ceb8d725dda9120bff080e5c23598e6bc/ait/core/api.py#L226 ``` except socket.error as e: log.error(e.message) except IOError as e: log.error(e.message) ``` The `.message`...

There's not really a great reason for our encode / decode utilities to require specific input file naming conventions. Our example implementations should error on the side of simple and...

The current command decoding approach doesn't work too nicely if you've added a Cmd class extension. Generally, `Cmd` extensions are added to customize command encoding format. The current decode handling...

I've noticed a few errors popping up when changes to the C&DH server get made that aren't getting caught by our tests. Most of these pop up when the server...

The script API uses `api.TlmWrapperAttr` to abstract telemetry access when using `api.Instrument.tlm`. This doesn't handle all valid Packet names as a result of using `__getattr__`. We need to consider alternative...

There are a number of deprecated DB API functions that were slated for removal in the 2.0 release that accidentally survived. To my knowledge, no current users of 2.x are...