Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.45 KB | None | 0 0
  1. monitor:
  2. ifeq ($(notdir $(MONITOR_CMD)), putty)
  3.     $(MONITOR_CMD) -serial -sercfg $(MONITOR_BAUDRATE),$(MONITOR_PARAMS) $(call get_monitor_port)
  4. else ifeq ($(notdir $(MONITOR_CMD)), picocom)
  5.         $(MONITOR_CMD) -b $(MONITOR_BAUDRATE) $(MONITOR_PARAMS) $(call get_monitor_port)
  6. else ifeq ($(notdir $(MONITOR_CMD)), cu)
  7.         $(MONITOR_CMD) -l $(call get_monitor_port) -s $(MONITOR_BAUDRATE)
  8. else
  9.         $(MONITOR_CMD) $(call get_monitor_port) $(MONITOR_BAUDRATE)
  10. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement