Nrf52832的代码多是重复自己的。
看52832的代码就像剥开女人的衣服一样,一件又一件,剥完都已经挂了
- APP_UART_FIFO_INIT(&comm_params,
- UART_RX_BUF_SIZE,
- UART_TX_BUF_SIZE,
- uart_error_handle,
- APP_IRQ_PRIORITY_LOWEST,
- err_code);
复制代码
里面又调用
- ERR_CODE = app_uart_init(P_COMM_PARAMS, &buffers, EVT_HANDLER, IRQ_PRIO);
复制代码
里面又调用
- err_code = nrf_drv_uart_init(&app_uart_inst, &config, uart_event_handler);
复制代码
里面又调用
- if (NRF_DRV_UART_USE_UARTE)
- {
- result = nrfx_uarte_init(&p_instance->uarte,
- (nrfx_uarte_config_t const *)&config,
- event_handler ? uarte_evt_handler : NULL);
- }
- else if (NRF_DRV_UART_USE_UART)
- {
- result = nrfx_uart_init(&p_instance->uart,
- (nrfx_uart_config_t const *)&config,
- event_handler ? uart_evt_handler : NULL);
- }
复制代码
建议用用dialog的14580,之后你就会很庆幸用了52832
如果你觉得dialog的代码最烂,那你又错了,建议你用用新唐arm9的None OS或者isd系列SDK
代码没有最烂,只有更烂
一周热门 更多>