Browse Source

Documentation fixes to config.h

Clara Hobbs 6 years ago
parent
commit
5ded678050
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/config.h

+ 3
- 3
src/config.h View File

55
 /* Flash configuration array */
55
 /* Flash configuration array */
56
 extern struct pdbs_config *pdbs_config_array;
56
 extern struct pdbs_config *pdbs_config_array;
57
 
57
 
58
-/* The number of elements in the pdb_config_array */
58
+/* The number of elements in the pdbs_config_array */
59
 #define PDBS_CONFIG_ARRAY_LEN 128
59
 #define PDBS_CONFIG_ARRAY_LEN 128
60
 
60
 
61
 
61
 
62
 /*
62
 /*
63
- * Print a struct pdb_config to the given BaseSequentialStream
63
+ * Print a struct pdbs_config to the given BaseSequentialStream
64
  */
64
  */
65
 void pdbs_config_print(BaseSequentialStream *chp, const struct pdbs_config *cfg);
65
 void pdbs_config_print(BaseSequentialStream *chp, const struct pdbs_config *cfg);
66
 
66
 
81
  * return NULL instead.
81
  * return NULL instead.
82
  *
82
  *
83
  * The location of the configuration is cached, and the cache is updated when
83
  * The location of the configuration is cached, and the cache is updated when
84
- * pdb_config_flash_erase and pdb_config_flash_update are called.  The full
84
+ * pdbs_config_flash_erase and pdbs_config_flash_update are called.  The full
85
  * lookup is only performed the first time this function is called, so there's
85
  * lookup is only performed the first time this function is called, so there's
86
  * very little penalty to calling it repeatedly.
86
  * very little penalty to calling it repeatedly.
87
  */
87
  */

Loading…
Cancel
Save