##// END OF EJS Templates
printf are used to test the new setFBinMask (Bug 747 and other similar bugs)
printf are used to test the new setFBinMask (Bug 747 and other similar bugs)

File last commit:

r295:16a2669a01ce R3_plus
r314:9e5325937a5e R3_plus
Show More
fsw_config.c
35 lines | 1.2 KiB | text/x-c | CLexer
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 #include <drvmgr/ambapp_bus.h>
paul
commit before going back to 3.1.0.2 for LESIA compilation
r295 #include <drvmgr/drvmgr.h>
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
// GRSPW0 resources
paul
commit before going back to 3.1.0.2 for LESIA compilation
r295 struct drvmgr_key grlib_grspw_0n1_res[] =
{
paul
packet emission task added...
r33 {"txBdCnt", KEY_TYPE_INT, {(unsigned int)50}}, // 7 SWF_F0, 7 SWF_F1, 7 SWF_F2, 7 CWF_F3, 7 CWF_F1 ou 7 CWF_F2
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {"rxBdCnt", KEY_TYPE_INT, {(unsigned int)10}},
{"txDataSize", KEY_TYPE_INT, {(unsigned int)4096}},
paul
TM_LFR_SCIENCE_NORMA_ASM_ packets modified, 32 bits values instead of 16 bits...
r196 {"txHdrSize", KEY_TYPE_INT, {(unsigned int)34}},
paul
commit before going back to 3.1.0.2 for LESIA compilation
r295 {"rxPktSize", KEY_TYPE_INT, {(unsigned int)200}},
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 KEY_EMPTY
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 };
// If RTEMS_DRVMGR_STARTUP is defined we override the "weak defaults" that is defined by the LEON3 BSP.
paul
commit before going back to 3.1.0.2 for LESIA compilation
r295 //struct drvmgr_bus_res grlib_drv_resources =
//{
// .next = NULL,
// .resource = {
// {DRIVER_AMBAPP_GAISLER_GRSPW_ID, 0, &grlib_grspw_0n1_res[0]},
// {DRIVER_AMBAPP_GAISLER_GRSPW_ID, 1, &grlib_grspw_0n1_res[0]},
// RES_EMPTY /* Mark end of resource array */
// }
//};
struct drvmgr_bus_res grlib_drv_resources =
{
NULL,
{
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 {DRIVER_AMBAPP_GAISLER_GRSPW_ID, 0, &grlib_grspw_0n1_res[0]},
paul
commit before going back to 3.1.0.2 for LESIA compilation
r295 {DRIVER_AMBAPP_GAISLER_GRSPW_ID, 1, &grlib_grspw_0n1_res[0]},
RES_EMPTY /* Mark end of resource array */
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 }
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 };