# Cerulean Standard Packet Protocol

## Overview

Cerulean Ping Protocol is the Application Programming Interface (API) used by many of Cerulean sonars. It is also used by the Blue Robotics Ping 1D and Ping 360 sonars. This is the protocol used to communicate between a host computer and the sonar devices. It is also the format of the data stored in log files (which typically have the filename extension ".svlog").

## Nomenclature

Some shorthand used in the packet definitions.

<table><thead><tr><th width="244">numonic</th><th></th></tr></thead><tbody><tr><td>u8</td><td>unsigned 8 bit number</td></tr><tr><td>bool</td><td>unsigned 8 bit field, 0 is false, anything else is true</td></tr><tr><td>char</td><td>generally holds an ascii character</td></tr><tr><td>char[]</td><td>an array of char of indeterminate length</td></tr><tr><td>char[5]</td><td>an array of 5 char</td></tr><tr><td>u16</td><td>unsigned 16 bit number</td></tr><tr><td>u32</td><td>unsigned 32 bit number</td></tr><tr><td>float</td><td>32 bit floating point number</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ceruleansonar.com/c/cerulean-ping-protocol/cerulean-standard-packet-protocol.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
