Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,618 changes: 879 additions & 739 deletions GSM.cpp

Large diffs are not rendered by default.

522 changes: 251 additions & 271 deletions GSM.h

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions GSMBase.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "GSMBase.h"
16 changes: 16 additions & 0 deletions GSMBase.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#ifndef __GSM_BASE_H_
#define __GSM_BASE_H_

#include "SIM900.h"

class CGSMBase
{
public:
CGSMBase(CSIMCOM900& rSimComm900): m_rSimComm900(rSimComm900){};

protected:
CSIMCOM900& m_rSimComm900;
};

#endif

Loading