Claude: File chunking system

This commit is contained in:
Niklas Jensen
2026-01-05 20:33:16 +01:00
committed by Rune Harlyk
parent 725d62747d
commit f440fa3973
8 changed files with 1472 additions and 19 deletions
@@ -41,6 +41,22 @@ DEFINE_MESSAGE_TRAITS(ServoPWMData, servo_pwm)
DEFINE_MESSAGE_TRAITS(ServoStateData, servo_state)
DEFINE_MESSAGE_TRAITS(CorrelationRequest, correlation_request)
DEFINE_MESSAGE_TRAITS(CorrelationResponse, correlation_response)
DEFINE_MESSAGE_TRAITS(FSDeleteRequest, fs_delete_request)
DEFINE_MESSAGE_TRAITS(FSDeleteResponse, fs_delete_response)
DEFINE_MESSAGE_TRAITS(FSMkdirRequest, fs_mkdir_request)
DEFINE_MESSAGE_TRAITS(FSMkdirResponse, fs_mkdir_response)
DEFINE_MESSAGE_TRAITS(FSListRequest, fs_list_request)
DEFINE_MESSAGE_TRAITS(FSListResponse, fs_list_response)
DEFINE_MESSAGE_TRAITS(FSDownloadStartRequest, fs_download_start_request)
DEFINE_MESSAGE_TRAITS(FSDownloadStartResponse, fs_download_start_response)
DEFINE_MESSAGE_TRAITS(FSDownloadChunkRequest, fs_download_chunk_request)
DEFINE_MESSAGE_TRAITS(FSDownloadChunkResponse, fs_download_chunk_response)
DEFINE_MESSAGE_TRAITS(FSUploadStartRequest, fs_upload_start_request)
DEFINE_MESSAGE_TRAITS(FSUploadStartResponse, fs_upload_start_response)
DEFINE_MESSAGE_TRAITS(FSUploadChunkRequest, fs_upload_chunk_request)
DEFINE_MESSAGE_TRAITS(FSUploadChunkResponse, fs_upload_chunk_response)
DEFINE_MESSAGE_TRAITS(FSCancelTransferRequest, fs_cancel_transfer_request)
DEFINE_MESSAGE_TRAITS(FSCancelTransferResponse, fs_cancel_transfer_response)
#undef DEFINE_MESSAGE_TRAITS