Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of StarterKit by
config_me.h@11:e6602513730f, 2016-07-12 (annotated)
- Committer:
- stefanrousseau
- Date:
- Tue Jul 12 03:11:05 2016 +0000
- Revision:
- 11:e6602513730f
- Parent:
- 4:f83bedd9cab4
- Child:
- 12:7c94ec5069dc
Fixed I2C issues. ; a) Removed stop between HTS221 address and read; b) The latest MBED uses the slave address differently from the legacy. Stick with the old for now and fixed the HTS221 address to BF instead of 5F.; c) Made I2C definitions externs.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
JMF | 2:0e2ef866af95 | 1 | #ifndef __CONFIG_ME_H_ |
JMF | 2:0e2ef866af95 | 2 | #define __CONFIG_ME_H_ |
JMF | 2:0e2ef866af95 | 3 | |
JMF | 2:0e2ef866af95 | 4 | // User must set these for own context: |
JMF | 2:0e2ef866af95 | 5 | static const char * MY_FLOW_DEVICE_ID_STR = "48482f"; |
stefanrousseau | 11:e6602513730f | 6 | //static const char * MY_SERVER_URL = "run-east.att.io"; |
stefanrousseau | 11:e6602513730f | 7 | static const char * MY_SERVER_URL = "run-west.att.io"; |
JMF | 2:0e2ef866af95 | 8 | static const char * MY_APN_STR = "m2m.com.attz"; |
JMF | 2:0e2ef866af95 | 9 | static const char * MY_PORT_STR = "80"; |
JMF | 2:0e2ef866af95 | 10 | |
JMF | 2:0e2ef866af95 | 11 | #endif |