HI Kostas,
As my colleague Bill mentioned, KW01 does support 3 bands (290-340 MHz, 424-510 MHz, 862-1020 MHz) and so you just need to modify the code to enable different bands.
Exactly what you need to change is the value of the define " gDefaultRfFreq_c" that is into the file RadioUtility.h, according to the formula:
Frf Register= Frf/Fstep
where Fstep=FXosc/2^19
For example, in actual SMAC demo you can find the below values for 915 MHz and 868.525 MHz frequency bands:
#define gDefaultRfFreq_c ( 0xE4C000 ) //rf freq 915 MHz (US)
#define gDefaultRfFreq_c ( 0xD8A199 ) //rf freq 866.525 MHz (EU)
For 433 MHz, it becomes:
#define gDefaultRfFreq_c ( 0x6C4000 ) //rf freq 433 MHz.
Also, always in RadioUtility.h, you can change other parameters such as Fdev, BitRate, and so on.
PS: Please note the Filter and Matching Network implemente in MRB-KW01 is optimized for the higher frequency band, but you can find the different BOM according to different frequency bands of operation in the file "KW01DHRM.pdf".
Hope that helps,
Antonio