Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/electro/f105-motor-demo_stm32/src/commit/5e8886579f1057e90fc873d2e594bb019e3cd047/project/com/iface_noop.h
You should set ROOT_URL correctly, otherwise the web may not work correctly.
STM32 firmware for a remotely-controlled stepper motor demo with a mobile interface.
|
#pragma once
|
|
|
|
/**
|
|
* NOOP iface works like /dev/null
|
|
*/
|
|
|
|
#include "com_iface.h"
|
|
|
|
/**
|
|
* @brief Initialize a do-nothing interface.
|
|
* @param iface : iface pointer. If NULL, it'll be allocated.
|
|
* @return the iface pointer.
|
|
*/
|
|
ComIface *noop_iface_init(void);
|
|
|