forked from Elara6331/itd
		
	Implement BLE FS
This commit is contained in:
		| @@ -15,6 +15,7 @@ const ( | ||||
| 	ReqTypeStepCount | ||||
| 	ReqTypeWatchStepCount | ||||
| 	ReqTypeCancel | ||||
| 	ReqTypeFS | ||||
| ) | ||||
|  | ||||
| const ( | ||||
| @@ -22,6 +23,21 @@ const ( | ||||
| 	UpgradeTypeFiles | ||||
| ) | ||||
|  | ||||
| const ( | ||||
| 	FSTypeWrite = iota | ||||
| 	FSTypeRead | ||||
| 	FSTypeMove | ||||
| 	FSTypeDelete | ||||
| 	FSTypeList | ||||
| 	FSTypeMkdir | ||||
| ) | ||||
|  | ||||
| type ReqDataFS struct { | ||||
| 	Type  int `json:"type"` | ||||
| 	Files []string `json:"files"` | ||||
| 	Data  string `json:"data,omitempty"` | ||||
| } | ||||
|  | ||||
| type ReqDataFwUpgrade struct { | ||||
| 	Type  int | ||||
| 	Files []string | ||||
| @@ -56,3 +72,10 @@ type MotionValues struct { | ||||
| 	Y int16 | ||||
| 	Z int16 | ||||
| } | ||||
|  | ||||
| type FileInfo struct { | ||||
| 	Name string `json:"name"` | ||||
| 	Size int64 `json:"size"` | ||||
| 	IsDir bool `json:"isDir"` | ||||
| 	 | ||||
| } | ||||
		Reference in New Issue
	
	Block a user