summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorAditya Naik2020-07-30 14:16:20 -0400
committerAditya Naik2020-07-30 14:16:20 -0400
commitc8c06aea5199e555235f71acc8547ed2ef0706cf (patch)
treee1d72f836873c9fc99dd200dd8829c6f0046b96f /src/config.h
parent70f623d66439a826927b7d2fc9d64ae0cb631b92 (diff)
Stream abstraction
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/config.h b/src/config.h
deleted file mode 100644
index e4a6590..0000000
--- a/src/config.h
+++ /dev/null
@@ -1,22 +0,0 @@
-
-/* Enable debug mode */
-/* #define DEBUG_ENABLE 1 */
-
-/* Enable testing mode */
-/* #define TESTING_ENABLE 1 */
-
-/* Buffer size for routing */
-#define ROUTING_BUFSIZE 128
-
-/**
- * \def MASTER_I2C_BUS_INTERVAL
- * \brief General interval value used by master in milliseconds
- *
- * Master uses this value to introduce delays on the I2C bus in order to reduce I2C timeout values.
- * The optimum interval is usually dependent on I2C bus configuration on the hardware. Testing and debug UART
- * operations will also affect this value.
- * If unforeseen I2C timeout issues are encountered on master side, this value should be increased to suit the
- * hardware.
- *
-*/
-#define MASTER_I2C_BUS_INTERVAL 5