-2

こんにちは、みんな、

私は最終学年のコンピューター サイエンスの学生です。私の最終年度のプロジェクトは、C または Tcl を使用して CISCO ルーター用のソフトウェアを開発することです。最新の一連のルーターでは、cisco は大容量ストレージ用の USB ポートを提供しています。ここで、Idea netsetter (インドでこの名前で入手可能なモデム) のようなワイヤレス モデムを接続すると、ルーターがインターネットに接続する必要があります。

このプロジェクトに関する基本的なアイデアを教えてください。また、他に開発しやすい言語があれば教えてください。

4

1 に答える 1

1

When you say "develop a software using C or Tcl, for a CISCO router", do you mean that you are writing a custom firmware from scratch? Or are you wanting to write some sort of plug-in or application that interfaces with the existing firmware?

In either case, I would recommend that you first consult the documentation you have for the router. See what kind of API and driver support you have for the C and TCL languages. If one language looks like it is better supported than the other, then you will likely have an easier time using that language.

In my experiences, it is typically easier to do systems-level programming in C than in TCL. Most embedded systems assume that you are going to work in C and provide C-language interfaces to system functions. You didn't mention anything about the router model, so I can't say anything too specific.

于 2010-07-06T16:44:13.423 に答える