First off, major thanks to @scanner_darkly for spearheading this. Super-necessary as things are getting confusing with the growth of devices on the bus. So great. 
I’ve taken a look at the proposed i2c file revisions and noted the following things:
-
We need to add in the range for the TELEX modules (0x60-0x6F).
-
Fix the conflict with the 16n (FADER) - the proposed address (0x60) is the same as the first TXo.
-
Fix the conflict with the ER-301 (colliding with Meadowphysics)
-
Add in the (tentative) addresses for a Tetrapad integration
How about these changes/additions?
// ER-301
#define ER301_1 0x31
#define ER301_2 0x32
#define ER301_3 0x33
// 16n
#define FADER 0x34
// Tetrapad (in-development)
#define TP_1 0x35
#define TP_2 0x36
#define TP_3 0x37
// TELEXo
#define TO 0x60
#define TO_0 0x60
#define TO_1 0x61
#define TO_2 0x62
#define TO_3 0x63
#define TO_4 0x64
#define TO_5 0x65
#define TO_6 0x66
#define TO_7 0x67
// TELEXi
#define TI 0x68
#define TI_0 0x68
#define TI_1 0x69
#define TI_2 0x6A
#define TI_3 0x6B
#define TI_4 0x6C
#define TI_5 0x6D
#define TI_6 0x6E
#define TI_7 0x6F
Thanks again!! 