2016-09-01 11 views
0

私は埋め込みプログラミングをしていますので、多くのCライブラリを使用することができません。NTPは1900年1月1日から現在の日付に換算します。

私はNTPプロトコルを使用していますので、今は1900年1月1日からの秒数があります。これを意味のあるタイムスタンプで変換する必要があります。私はそれを探していて、この@R ..の実装を見つけました。

http://git.musl-libc.org/cgit/musl/tree/src/time/__secs_to_tm.c?h=v0.9.15

私はそれを使用しようとしたが、私は正しい結果が届きません。

誰かが関数の最初の引数を知っていますか?私は1900年1月1日からの秒数と1970年1月1日からの秒数を渡すように試みましたが、どれも期待どおりに動作しませんでした。

私が実行しているコードは次のとおりです。

#define NTP_PACKET_SIZE   48 
uint8_t packetBuffer[ NTP_PACKET_SIZE]; 
typedef struct tempo{ 
    int tm_sec;   /* seconds, range 0 to 59   */ 
    int tm_min;   /* minutes, range 0 to 59   */ 
    int tm_hour;  /* hours, range 0 to 23    */ 
    int tm_mday;  /* day of the month, range 1 to 31 */ 
    int tm_mon;   /* month, range 0 to 11    */ 
    int tm_year;  /* The number of years since 1900 */ 
    int tm_wday;  /* day of the week, range 0 to 6 */ 
    int tm_yday;  /* day in the year, range 0 to 365 */ 
    int tm_isdst;  /* daylight saving time    */ 
} tim; 

tim * t; 

static returnTypes_t bsdUdpClient(uint16_t AddrSize){ 

    int16_t Status = (int16_t) ZERO; 

     memset(packetBuffer, 0, NTP_PACKET_SIZE); 

     // Initialize values needed to form NTP request 
      packetBuffer[0] = 0xE3; //0b11100011; // LI, Version, Mode 
      packetBuffer[1] = 0x00;  // Stratum, or type of clock 
      packetBuffer[2] = 0x06;  // Polling Interval 
      packetBuffer[3] = 0xEC; // Peer Clock Precision 
     // 8 bytes of zero for Root Delay & Root Dispersion 
      packetBuffer[12] = 49; 
      packetBuffer[13] = 0x4E; 
      packetBuffer[14] = 49; 
      packetBuffer[15] = 52; 

    SockID = sl_Socket(SL_AF_INET, SL_SOCK_DGRAM, (uint32_t) ZERO); 
    if (SockID < (int16_t) ZERO) 
     return (SOCKET_ERROR); 

    Status = sl_SendTo(SockID, packetBuffer, NTP_PACKET_SIZE * sizeof(uint8_t), (uint32_t) ZERO, (SlSockAddr_t *) &Addr, AddrSize); 

    /*Check if 0 transmitted bytes sent or error condition*/ 
    if (Status <= (int16_t) ZERO) { 
     sl_Close(SockID); 
     return (SEND_ERROR); 
    } 
    else 
     printf("request sent successfully\n\r"); 

    /* receive the reply from the server*/ 
    Status = sl_RecvFrom(SockID, packetBuffer, NTP_PACKET_SIZE * sizeof(uint8_t), (uint32_t) ZERO, (SlSockAddr_t *) &Addr, &AddrSize); 
    if (Status < (int16_t) ZERO){ 
     printf("error - no bytes received: %d\n\r", (int16_t)Status); 
     return SOCKET_ERROR; 
    } 
    else 
     printf("reply received\n\r"); 

    Status = sl_Close(SockID); 
    if (Status < 0) 
     printf("problem on sl_Close\n\r"); 

    uint8_t index3 = packetBuffer[40]; 
    uint8_t index2 = packetBuffer[41]; 
    uint8_t index1 = packetBuffer[42]; 
    uint8_t index0 = packetBuffer[43]; 

    uint16_t highWord = index3 << 8 | index2; 
    uint16_t lowWord = index1 << 8 | index0; 

    uint32_t secondsSince1900 = highWord << 16 | lowWord; 

    printf("Seconds since 1 Janeiro de 1900: %lu\n\r", secondsSince1900); 
    printf("Seconds since 1 Janeira de 1970: %lu\n\r", secondsSince1900 - 2208988800ul); 


    if(secs_to_date((secondsSince1900 - 2208988800ul) , t)!=0) 
     printf("impossible to convert\n\r"); 

    printf("year: %d; month: %d; day:%d; hour:%d; minuts: %d; seconds:%d\n\r", t->tm_year, t->tm_mon, t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec); 

    return (STATUS_OK); 

    } 

ので、例えば、私は結果を期待していた、数分前前にコードをrunned

年:2016;月:9;日:1;時間:9;分前:20;秒:56

(例えば)が、私が得たこの

年:32281;月:32279;日:32277;時間:32275; minuts:32221;秒:537001984

+0

変換関数を呼び出すときにアドレス演算子&を使用あなたは[mcve]を投稿しますか? –

+0

一部の入力については、期待される出力は何ですか、そして実際の出力は何ですか? –

+0

申し訳ありません@ JoachimPileborgのために、私は期待/実際の出力を追加しました – lmbcerqueira

答えて

2

tどこかどこでも有効ですか?これは初期化されていないグローバル変数なのでゼロ初期化されます。つまり、ポインタはNULLに初期化されます。 nullポインタを参照解除すると、の未定義の動作になります。代わりに普通の非ポインタ変数として宣言ポインタとしてそれを宣言する

tim t; 

することができます

secs_to_date((secondsSince1900 - 2208988800ul) , &t) 
//            ^
//            | 
// Notice the use of the address-of operator here 
関連する問題