clean up some device warnings
move led_blinking_task and led_blinking_set_interval to board.c
This commit is contained in:
		| @@ -190,12 +190,12 @@ tusb_error_t cdcd_control_request_subtask(uint8_t coreid, tusb_control_request_t | ||||
|   switch(p_request->bRequest) | ||||
|   { | ||||
|     case CDC_REQUEST_GET_LINE_CODING: | ||||
|       dcd_pipe_control_xfer(coreid, p_request->bmRequestType_bit.direction, | ||||
|       dcd_pipe_control_xfer(coreid, (tusb_direction_t) p_request->bmRequestType_bit.direction, | ||||
|                             (uint8_t*) &cdcd_line_coding[coreid], min16_of(sizeof(cdc_line_coding_t), p_request->wLength), false ); | ||||
|     break; | ||||
|  | ||||
|     case CDC_REQUEST_SET_LINE_CODING: | ||||
|       dcd_pipe_control_xfer(coreid, p_request->bmRequestType_bit.direction, | ||||
|       dcd_pipe_control_xfer(coreid, (tusb_direction_t) p_request->bmRequestType_bit.direction, | ||||
|                             (uint8_t*) &cdcd_line_coding[coreid], min16_of(sizeof(cdc_line_coding_t), p_request->wLength), false ); | ||||
|       // TODO notify application on xfer completea | ||||
|     break; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 hathach
					hathach