Commit 982a2712 authored by Cristian Maglie's avatar Cristian Maglie

Removed "flavour" option in 'board attach' command

parent 15bf593f
......@@ -39,15 +39,12 @@ func initAttachCommand() *cobra.Command {
Args: cobra.RangeArgs(1, 2),
Run: runAttachCommand,
}
attachCommand.Flags().StringVar(&attachFlags.boardFlavour, "flavour", "default",
"The Name of the CPU flavour, it is required for some boards (e.g. Arduino Nano).")
attachCommand.Flags().StringVar(&attachFlags.searchTimeout, "timeout", "5s",
"The timeout of the search of connected devices, try to high it if your board is not found (e.g. to 10s).")
return attachCommand
}
var attachFlags struct {
boardFlavour string // The flavor of the chipset of the cpu of the connected board, if not specified it is set to "default".
searchTimeout string // Expressed in a parsable duration, is the timeout for the list and attach commands.
}
......@@ -61,7 +58,6 @@ func runAttachCommand(cmd *cobra.Command, args []string) {
Instance: instance,
BoardUri: args[0],
SketchPath: path,
BoardFlavour: attachFlags.boardFlavour,
SearchTimeout: attachFlags.searchTimeout,
}, cli.OutputTaskProgress())
if err != nil {
......
......@@ -30,7 +30,7 @@ func (m *BoardDetailsReq) Reset() { *m = BoardDetailsReq{} }
func (m *BoardDetailsReq) String() string { return proto.CompactTextString(m) }
func (*BoardDetailsReq) ProtoMessage() {}
func (*BoardDetailsReq) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{0}
return fileDescriptor_board_e8338ee96363d0b7, []int{0}
}
func (m *BoardDetailsReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BoardDetailsReq.Unmarshal(m, b)
......@@ -77,7 +77,7 @@ func (m *BoardDetailsResp) Reset() { *m = BoardDetailsResp{} }
func (m *BoardDetailsResp) String() string { return proto.CompactTextString(m) }
func (*BoardDetailsResp) ProtoMessage() {}
func (*BoardDetailsResp) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{1}
return fileDescriptor_board_e8338ee96363d0b7, []int{1}
}
func (m *BoardDetailsResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BoardDetailsResp.Unmarshal(m, b)
......@@ -131,7 +131,7 @@ func (m *ConfigOption) Reset() { *m = ConfigOption{} }
func (m *ConfigOption) String() string { return proto.CompactTextString(m) }
func (*ConfigOption) ProtoMessage() {}
func (*ConfigOption) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{2}
return fileDescriptor_board_e8338ee96363d0b7, []int{2}
}
func (m *ConfigOption) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ConfigOption.Unmarshal(m, b)
......@@ -185,7 +185,7 @@ func (m *ConfigValue) Reset() { *m = ConfigValue{} }
func (m *ConfigValue) String() string { return proto.CompactTextString(m) }
func (*ConfigValue) ProtoMessage() {}
func (*ConfigValue) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{3}
return fileDescriptor_board_e8338ee96363d0b7, []int{3}
}
func (m *ConfigValue) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ConfigValue.Unmarshal(m, b)
......@@ -239,7 +239,7 @@ func (m *RequiredTool) Reset() { *m = RequiredTool{} }
func (m *RequiredTool) String() string { return proto.CompactTextString(m) }
func (*RequiredTool) ProtoMessage() {}
func (*RequiredTool) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{4}
return fileDescriptor_board_e8338ee96363d0b7, []int{4}
}
func (m *RequiredTool) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RequiredTool.Unmarshal(m, b)
......@@ -284,8 +284,7 @@ type BoardAttachReq struct {
Instance *Instance `protobuf:"bytes,1,opt,name=instance,proto3" json:"instance,omitempty"`
BoardUri string `protobuf:"bytes,2,opt,name=board_uri,json=boardUri,proto3" json:"board_uri,omitempty"`
SketchPath string `protobuf:"bytes,3,opt,name=sketch_path,json=sketchPath,proto3" json:"sketch_path,omitempty"`
BoardFlavour string `protobuf:"bytes,4,opt,name=board_flavour,json=boardFlavour,proto3" json:"board_flavour,omitempty"`
SearchTimeout string `protobuf:"bytes,5,opt,name=search_timeout,json=searchTimeout,proto3" json:"search_timeout,omitempty"`
SearchTimeout string `protobuf:"bytes,4,opt,name=search_timeout,json=searchTimeout,proto3" json:"search_timeout,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
......@@ -295,7 +294,7 @@ func (m *BoardAttachReq) Reset() { *m = BoardAttachReq{} }
func (m *BoardAttachReq) String() string { return proto.CompactTextString(m) }
func (*BoardAttachReq) ProtoMessage() {}
func (*BoardAttachReq) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{5}
return fileDescriptor_board_e8338ee96363d0b7, []int{5}
}
func (m *BoardAttachReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BoardAttachReq.Unmarshal(m, b)
......@@ -336,13 +335,6 @@ func (m *BoardAttachReq) GetSketchPath() string {
return ""
}
func (m *BoardAttachReq) GetBoardFlavour() string {
if m != nil {
return m.BoardFlavour
}
return ""
}
func (m *BoardAttachReq) GetSearchTimeout() string {
if m != nil {
return m.SearchTimeout
......@@ -361,7 +353,7 @@ func (m *BoardAttachResp) Reset() { *m = BoardAttachResp{} }
func (m *BoardAttachResp) String() string { return proto.CompactTextString(m) }
func (*BoardAttachResp) ProtoMessage() {}
func (*BoardAttachResp) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{6}
return fileDescriptor_board_e8338ee96363d0b7, []int{6}
}
func (m *BoardAttachResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BoardAttachResp.Unmarshal(m, b)
......@@ -399,7 +391,7 @@ func (m *BoardListReq) Reset() { *m = BoardListReq{} }
func (m *BoardListReq) String() string { return proto.CompactTextString(m) }
func (*BoardListReq) ProtoMessage() {}
func (*BoardListReq) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{7}
return fileDescriptor_board_e8338ee96363d0b7, []int{7}
}
func (m *BoardListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BoardListReq.Unmarshal(m, b)
......@@ -437,7 +429,7 @@ func (m *BoardListResp) Reset() { *m = BoardListResp{} }
func (m *BoardListResp) String() string { return proto.CompactTextString(m) }
func (*BoardListResp) ProtoMessage() {}
func (*BoardListResp) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{8}
return fileDescriptor_board_e8338ee96363d0b7, []int{8}
}
func (m *BoardListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BoardListResp.Unmarshal(m, b)
......@@ -478,7 +470,7 @@ func (m *DetectedPort) Reset() { *m = DetectedPort{} }
func (m *DetectedPort) String() string { return proto.CompactTextString(m) }
func (*DetectedPort) ProtoMessage() {}
func (*DetectedPort) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{9}
return fileDescriptor_board_e8338ee96363d0b7, []int{9}
}
func (m *DetectedPort) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DetectedPort.Unmarshal(m, b)
......@@ -538,7 +530,7 @@ func (m *BoardListAllReq) Reset() { *m = BoardListAllReq{} }
func (m *BoardListAllReq) String() string { return proto.CompactTextString(m) }
func (*BoardListAllReq) ProtoMessage() {}
func (*BoardListAllReq) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{10}
return fileDescriptor_board_e8338ee96363d0b7, []int{10}
}
func (m *BoardListAllReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BoardListAllReq.Unmarshal(m, b)
......@@ -583,7 +575,7 @@ func (m *BoardListAllResp) Reset() { *m = BoardListAllResp{} }
func (m *BoardListAllResp) String() string { return proto.CompactTextString(m) }
func (*BoardListAllResp) ProtoMessage() {}
func (*BoardListAllResp) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{11}
return fileDescriptor_board_e8338ee96363d0b7, []int{11}
}
func (m *BoardListAllResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BoardListAllResp.Unmarshal(m, b)
......@@ -622,7 +614,7 @@ func (m *BoardListItem) Reset() { *m = BoardListItem{} }
func (m *BoardListItem) String() string { return proto.CompactTextString(m) }
func (*BoardListItem) ProtoMessage() {}
func (*BoardListItem) Descriptor() ([]byte, []int) {
return fileDescriptor_board_cfe40cb888280102, []int{12}
return fileDescriptor_board_e8338ee96363d0b7, []int{12}
}
func (m *BoardListItem) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BoardListItem.Unmarshal(m, b)
......@@ -672,49 +664,48 @@ func init() {
proto.RegisterType((*BoardListItem)(nil), "cc.arduino.core.rpc.BoardListItem")
}
func init() { proto.RegisterFile("board.proto", fileDescriptor_board_cfe40cb888280102) }
var fileDescriptor_board_cfe40cb888280102 = []byte{
// 653 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xa4, 0x54, 0xdf, 0x4e, 0x14, 0x3f,
0x14, 0xce, 0xfc, 0x80, 0xfd, 0xed, 0x9e, 0x9d, 0x41, 0x53, 0x8d, 0xd9, 0x60, 0x8c, 0x50, 0x35,
0xe1, 0xc6, 0x25, 0xd1, 0x0b, 0xd4, 0x3b, 0xd0, 0x10, 0x48, 0x08, 0x62, 0x83, 0x46, 0xbd, 0x59,
0xbb, 0xdd, 0xb2, 0xdb, 0x30, 0x33, 0x1d, 0xda, 0x0e, 0x2f, 0xe0, 0xc3, 0xf8, 0x0e, 0xbe, 0x87,
0xef, 0x63, 0xff, 0xcd, 0x38, 0x24, 0x2b, 0x89, 0xe1, 0x6a, 0x7a, 0xbe, 0xf9, 0x7a, 0xfe, 0x7e,
0xa7, 0x30, 0x9c, 0x4a, 0xaa, 0x66, 0xe3, 0x4a, 0x49, 0x23, 0xd1, 0x3d, 0xc6, 0xc6, 0xd6, 0xaa,
0x45, 0x29, 0xc7, 0x4c, 0x2a, 0x3e, 0x56, 0x15, 0xdb, 0x48, 0x99, 0x2c, 0x0a, 0x59, 0x06, 0x0a,
0xfe, 0x06, 0x77, 0xf6, 0xdd, 0x8d, 0x77, 0xdc, 0x50, 0x91, 0x6b, 0xc2, 0x2f, 0xd1, 0x6b, 0xe8,
0x8b, 0x52, 0x1b, 0x5a, 0x32, 0x3e, 0x4a, 0x36, 0x93, 0xed, 0xe1, 0x8b, 0x47, 0xe3, 0x25, 0x8e,
0xc6, 0x47, 0x91, 0x44, 0x5a, 0x3a, 0x42, 0xb0, 0x7a, 0x7e, 0x39, 0x2d, 0x47, 0xff, 0xd9, 0x6b,
0x03, 0xe2, 0xcf, 0xf8, 0x67, 0x02, 0x77, 0xaf, 0x87, 0xd0, 0x95, 0x23, 0x96, 0xb4, 0xe0, 0x0d,
0xd1, 0x9d, 0xd1, 0x21, 0xac, 0x33, 0x59, 0x9e, 0x8b, 0xf9, 0x44, 0x56, 0x46, 0xc8, 0x52, 0x8f,
0x56, 0x36, 0x57, 0x6c, 0xf4, 0xad, 0xa5, 0xd1, 0xdf, 0x7a, 0xea, 0x7b, 0xcf, 0x24, 0x19, 0xeb,
0x58, 0xda, 0x79, 0x52, 0xfc, 0xb2, 0x16, 0x8a, 0xcf, 0x26, 0x46, 0xca, 0x5c, 0x8f, 0x56, 0x6f,
0xf0, 0x44, 0x22, 0xf5, 0xcc, 0x32, 0x49, 0xa6, 0x3a, 0x96, 0xc6, 0xdf, 0x13, 0x48, 0xbb, 0x91,
0xd0, 0x03, 0xe8, 0x85, 0xec, 0x7c, 0x6b, 0x06, 0x24, 0x5a, 0x68, 0x0b, 0xd2, 0x70, 0x9a, 0xe4,
0x74, 0xca, 0xf3, 0x58, 0xd8, 0x30, 0x60, 0xc7, 0x0e, 0x42, 0xaf, 0xa0, 0x77, 0x45, 0xf3, 0x9a,
0x37, 0x75, 0x6d, 0xde, 0x50, 0xd7, 0x27, 0x47, 0x24, 0x91, 0x6f, 0x87, 0x34, 0xec, 0xc0, 0xe8,
0x3e, 0xac, 0xf9, 0x1f, 0x31, 0x85, 0x60, 0xa0, 0xc7, 0x30, 0xf4, 0x87, 0x6b, 0x09, 0x80, 0x87,
0x42, 0xfc, 0x0d, 0xe8, 0x6b, 0x9e, 0x73, 0x66, 0xf8, 0xcc, 0x66, 0x90, 0x6c, 0xf7, 0x49, 0x6b,
0xe3, 0xcf, 0x90, 0x76, 0xdb, 0xd0, 0xce, 0x27, 0xe9, 0xcc, 0x67, 0x04, 0xff, 0x5f, 0x71, 0xa5,
0x5d, 0xed, 0xc1, 0x79, 0x63, 0x3a, 0xcf, 0x15, 0x65, 0x17, 0x74, 0xce, 0x95, 0xf7, 0x3c, 0x20,
0xad, 0x8d, 0x7f, 0x25, 0xb0, 0xee, 0xc7, 0xbf, 0x67, 0x0c, 0x65, 0x8b, 0x5b, 0x0a, 0xec, 0x21,
0x0c, 0xbc, 0xc0, 0x27, 0xb5, 0x12, 0x31, 0x8b, 0xbe, 0x07, 0x3e, 0x2a, 0xe1, 0x3a, 0xa0, 0x2f,
0xb8, 0x61, 0x8b, 0x49, 0x45, 0xcd, 0x22, 0x66, 0x02, 0x01, 0x3a, 0xb5, 0x08, 0x7a, 0x02, 0x59,
0xb8, 0x7d, 0x9e, 0xd3, 0x2b, 0x59, 0x2b, 0x2b, 0x0b, 0x47, 0x49, 0x3d, 0x78, 0x10, 0x30, 0xf4,
0x0c, 0xd6, 0x35, 0xa7, 0xca, 0x7a, 0x31, 0xa2, 0xe0, 0xb2, 0x36, 0xa3, 0x35, 0xcf, 0xca, 0x02,
0x7a, 0x16, 0x40, 0xfc, 0x25, 0x2e, 0x4e, 0x53, 0x96, 0x15, 0xf5, 0x01, 0x64, 0x86, 0xea, 0x8b,
0x89, 0xdd, 0xac, 0xb9, 0xe2, 0x5a, 0xc7, 0xe2, 0x96, 0xab, 0xee, 0xcc, 0x32, 0x4f, 0x23, 0x91,
0xa4, 0xa6, 0x63, 0xe1, 0x23, 0x48, 0xbd, 0xeb, 0x63, 0xa1, 0xcd, 0xed, 0xfa, 0x85, 0x0f, 0x21,
0xeb, 0xb8, 0xb2, 0x39, 0xee, 0xc2, 0x5a, 0x25, 0x95, 0x71, 0xb9, 0xfd, 0x7d, 0x23, 0xec, 0xa6,
0x7a, 0x59, 0x9c, 0x5a, 0x26, 0x09, 0x7c, 0xfc, 0xc3, 0x6e, 0x42, 0x17, 0x77, 0x72, 0xa0, 0xb3,
0x59, 0x5b, 0xa7, 0x95, 0x43, 0x34, 0xbd, 0x1c, 0xdc, 0xe3, 0xc2, 0x64, 0x23, 0xc3, 0xd6, 0x76,
0xdd, 0x6d, 0xce, 0x51, 0xa8, 0x61, 0x4c, 0x59, 0x83, 0x06, 0xad, 0xbe, 0x81, 0x9e, 0x1f, 0x4a,
0xb3, 0xb9, 0x78, 0x69, 0x9e, 0x6d, 0x69, 0x47, 0x86, 0x17, 0x24, 0xde, 0xc0, 0x45, 0x9c, 0x8c,
0xfb, 0xb1, 0x97, 0xe7, 0xb7, 0x54, 0x9c, 0x13, 0x55, 0x90, 0x03, 0x55, 0x73, 0x6d, 0xeb, 0x59,
0xf1, 0xa2, 0xf2, 0xd0, 0x9e, 0x45, 0xf0, 0x49, 0x7c, 0xde, 0xda, 0x70, 0xb6, 0xcb, 0x7f, 0xd2,
0x4f, 0xfe, 0x39, 0xfd, 0xdd, 0xce, 0xc8, 0xdc, 0x8f, 0xa5, 0xbb, 0x68, 0xb1, 0x83, 0x0f, 0xfb,
0x27, 0xcd, 0xfb, 0xe9, 0xce, 0xfb, 0x4f, 0xbf, 0xe2, 0xb9, 0x30, 0x8b, 0x7a, 0x6a, 0x23, 0x14,
0x3b, 0x31, 0x5a, 0xf3, 0x7d, 0xce, 0x72, 0xb1, 0x63, 0x83, 0x4e, 0x7b, 0xbe, 0xd1, 0x2f, 0x7f,
0x07, 0x00, 0x00, 0xff, 0xff, 0xff, 0xd1, 0x7d, 0x00, 0x29, 0x06, 0x00, 0x00,
func init() { proto.RegisterFile("board.proto", fileDescriptor_board_e8338ee96363d0b7) }
var fileDescriptor_board_e8338ee96363d0b7 = []byte{
// 633 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xa4, 0x54, 0x4d, 0x6f, 0xd4, 0x30,
0x10, 0x55, 0x68, 0xbb, 0xec, 0xce, 0x26, 0x05, 0x05, 0x84, 0x56, 0x45, 0x88, 0xd6, 0x02, 0xa9,
0x17, 0x52, 0x09, 0x0e, 0x05, 0x6e, 0x2d, 0xa8, 0x6a, 0xa5, 0xaa, 0x14, 0xab, 0x20, 0xe0, 0x12,
0xbc, 0x5e, 0x77, 0xd7, 0x6a, 0x12, 0xa7, 0xb6, 0xd3, 0x3f, 0xc0, 0x8f, 0xe1, 0xca, 0x99, 0x5f,
0x87, 0xbf, 0x12, 0x52, 0x69, 0xa9, 0x84, 0x7a, 0x8a, 0xe7, 0xe5, 0x65, 0xe6, 0xcd, 0xcc, 0x73,
0x60, 0x3c, 0x15, 0x44, 0xce, 0xb2, 0x5a, 0x0a, 0x2d, 0xd2, 0x07, 0x94, 0x66, 0x26, 0x6a, 0x78,
0x25, 0x32, 0x2a, 0x24, 0xcb, 0x64, 0x4d, 0x37, 0x62, 0x2a, 0xca, 0x52, 0x54, 0x9e, 0x82, 0xbe,
0xc3, 0xbd, 0x7d, 0xfb, 0xc5, 0x7b, 0xa6, 0x09, 0x2f, 0x14, 0x66, 0x97, 0xe9, 0x1b, 0x18, 0xf2,
0x4a, 0x69, 0x52, 0x51, 0x36, 0x89, 0x36, 0xa3, 0xed, 0xf1, 0xcb, 0x27, 0xd9, 0x92, 0x44, 0xd9,
0x51, 0x20, 0xe1, 0x8e, 0x9e, 0xa6, 0xb0, 0x7a, 0x7e, 0x39, 0xad, 0x26, 0x77, 0xcc, 0x67, 0x23,
0xec, 0xce, 0xe8, 0x77, 0x04, 0xf7, 0xaf, 0x97, 0x50, 0xb5, 0x25, 0x56, 0xa4, 0x64, 0x2d, 0xd1,
0x9e, 0xd3, 0x43, 0x58, 0xa7, 0xa2, 0x3a, 0xe7, 0xf3, 0x5c, 0xd4, 0x9a, 0x8b, 0x4a, 0x4d, 0x56,
0x36, 0x57, 0x4c, 0xf5, 0xad, 0xa5, 0xd5, 0xdf, 0x39, 0xea, 0x07, 0xc7, 0xc4, 0x09, 0xed, 0x45,
0xca, 0x66, 0x92, 0xec, 0xb2, 0xe1, 0x92, 0xcd, 0x72, 0x2d, 0x44, 0xa1, 0x26, 0xab, 0x37, 0x64,
0xc2, 0x81, 0x7a, 0x66, 0x98, 0x38, 0x91, 0xbd, 0x48, 0xa1, 0x1f, 0x11, 0xc4, 0xfd, 0x4a, 0xe9,
0x23, 0x18, 0x78, 0x75, 0x6e, 0x34, 0x23, 0x1c, 0xa2, 0x74, 0x0b, 0x62, 0x7f, 0xca, 0x0b, 0x32,
0x65, 0x45, 0x68, 0x6c, 0xec, 0xb1, 0x63, 0x0b, 0xa5, 0xaf, 0x61, 0x70, 0x45, 0x8a, 0x86, 0xb5,
0x7d, 0x6d, 0xde, 0xd0, 0xd7, 0x67, 0x4b, 0xc4, 0x81, 0x6f, 0x96, 0x34, 0xee, 0xc1, 0xe9, 0x43,
0x58, 0x73, 0x2f, 0x82, 0x04, 0x1f, 0xa4, 0x4f, 0x61, 0xec, 0x0e, 0xd7, 0x04, 0x80, 0x83, 0x7c,
0xfd, 0x0d, 0x18, 0x2a, 0x56, 0x30, 0xaa, 0xd9, 0xcc, 0x28, 0x88, 0xb6, 0x87, 0xb8, 0x8b, 0xd1,
0x17, 0x88, 0xfb, 0x63, 0xe8, 0xf6, 0x13, 0xf5, 0xf6, 0x33, 0x81, 0xbb, 0x57, 0x4c, 0x2a, 0xdb,
0xbb, 0x4f, 0xde, 0x86, 0x36, 0x73, 0x4d, 0xe8, 0x05, 0x99, 0x33, 0xe9, 0x32, 0x8f, 0x70, 0x17,
0xa3, 0x5f, 0x11, 0xac, 0xbb, 0xf5, 0xef, 0x69, 0x4d, 0xe8, 0xe2, 0x96, 0x06, 0x7b, 0x0c, 0x23,
0x67, 0xf0, 0xbc, 0x91, 0x3c, 0xa8, 0x18, 0x3a, 0xe0, 0x93, 0xe4, 0x76, 0x02, 0xea, 0x82, 0x69,
0xba, 0xc8, 0x6b, 0xa2, 0x17, 0x41, 0x09, 0x78, 0xe8, 0xd4, 0x20, 0xe9, 0x73, 0x58, 0x57, 0x8c,
0x48, 0x43, 0xd0, 0xbc, 0x64, 0xa2, 0xd1, 0xc6, 0x17, 0x96, 0x93, 0x78, 0xf4, 0xcc, 0x83, 0xe8,
0x6b, 0xb8, 0x13, 0xad, 0x62, 0xe3, 0xd7, 0x03, 0x48, 0x34, 0x51, 0x17, 0xb9, 0xb9, 0x34, 0x73,
0xc9, 0x94, 0x0a, 0xba, 0x97, 0x1b, 0xea, 0xcc, 0x30, 0x4f, 0x03, 0x11, 0xc7, 0xba, 0x17, 0xa1,
0x23, 0x88, 0x5d, 0xea, 0x63, 0xae, 0xf4, 0xed, 0x46, 0x81, 0x0e, 0x21, 0xe9, 0xa5, 0x32, 0x1a,
0x77, 0x61, 0xad, 0x16, 0x52, 0x5b, 0x6d, 0xff, 0x36, 0xbb, 0xb9, 0x84, 0x6e, 0xe3, 0xa7, 0x86,
0x89, 0x3d, 0x1f, 0xfd, 0x34, 0x26, 0xef, 0xe3, 0x76, 0xd3, 0x64, 0x36, 0xeb, 0xfa, 0x34, 0x9b,
0x0e, 0xa1, 0xdb, 0xb4, 0xfd, 0x6f, 0x50, 0xd1, 0x3a, 0xac, 0x8b, 0xed, 0x74, 0xdb, 0x73, 0xf0,
0xa0, 0xdf, 0x40, 0xd2, 0xa2, 0xde, 0x86, 0x6f, 0x61, 0xe0, 0x36, 0xd6, 0x5e, 0x4a, 0xb4, 0x54,
0x67, 0xd7, 0xda, 0x91, 0x66, 0x25, 0x0e, 0x5f, 0xa0, 0x32, 0x6c, 0xc6, 0xbe, 0xd8, 0x2b, 0x8a,
0x5b, 0x9a, 0xc9, 0xfa, 0xc5, 0xdb, 0x81, 0xc8, 0xb9, 0x32, 0xfd, 0xac, 0x38, 0xbf, 0x38, 0x68,
0xcf, 0x20, 0xe8, 0x24, 0xfc, 0xb9, 0xba, 0x72, 0x66, 0xca, 0x7f, 0xe5, 0x47, 0xff, 0x2d, 0x7f,
0xb7, 0xb7, 0x32, 0xfb, 0x62, 0xe9, 0x35, 0x33, 0xd8, 0xc1, 0xc7, 0xfd, 0x93, 0xf6, 0xd7, 0x68,
0xcf, 0xfb, 0xcf, 0xbe, 0xa1, 0x39, 0xd7, 0x8b, 0x66, 0x6a, 0x2a, 0x94, 0x3b, 0xa1, 0x5a, 0xfb,
0x7c, 0x41, 0x0b, 0xbe, 0x63, 0x8a, 0x4e, 0x07, 0x6e, 0xd0, 0xaf, 0xfe, 0x04, 0x00, 0x00, 0xff,
0xff, 0x70, 0xb5, 0x12, 0x08, 0x04, 0x06, 0x00, 0x00,
}
......@@ -56,8 +56,7 @@ message BoardAttachReq {
Instance instance = 1;
string board_uri = 2;
string sketch_path = 3;
string board_flavour = 4;
string search_timeout = 5;
string search_timeout = 4;
}
message BoardAttachResp {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment